Google App Engine (often referred to as GAE or simply App Engine) is a
cloud computing
Cloud computing is the on-demand availability of computer system resources, especially data storage ( cloud storage) and computing power, without direct active management by the user. Large clouds often have functions distributed over m ...
platform as a service for developing and hosting
web application
A web application (or web app) is application software that is accessed using a web browser. Web applications are delivered on the World Wide Web to users with an active network connection.
History
In earlier computing models like client-serve ...
s in Google-managed
data centers. Applications are
sandboxed and run across multiple servers. App Engine offers automatic scaling for web applications—as the number of requests increases for an application, App Engine automatically allocates more resources for the web application to handle the additional demand.
Google App Engine primarily supports
Go,
PHP
PHP is a General-purpose programming language, general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementati ...
,
Java
Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's mo ...
,
Python,
Node.js,
.NET, and
Ruby
A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum (aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapp ...
applications, although it can also support other languages via "custom runtimes".
The service is free up to a certain level of consumed resources and only in standard environment but not in flexible environment. Fees are charged for additional storage,
bandwidth, or instance hours required by the application. It was first released as a preview version in April 2008 and came out of preview in September 2011.
Supported features/restrictions
Runtimes and framework
Google App Engine primarily supports
Go,
PHP
PHP is a General-purpose programming language, general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementati ...
,
Java
Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's mo ...
,
Python,
Node.js,
.NET, and
Ruby
A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum (aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapp ...
applications, although it can also support other languages via "custom runtimes".
Python web frameworks that run on Google App Engine include
Django,
CherryPy,
Pyramid
A pyramid (from el, πυραμίς ') is a structure whose outer surfaces are triangular and converge to a single step at the top, making the shape roughly a pyramid in the geometric sense. The base of a pyramid can be trilateral, quadrila ...
,
Flask,
web2py and webapp2, as well as a custom Google-written webapp framework and several others designed specifically for the platform that emerged since the release. Any Python framework that supports the
WSGI using the CGI adapter can be used to create an application; the framework can be uploaded with the developed application. Third-party libraries written in pure Python may also be uploaded.
Google App Engine supports many Java standards and frameworks. Core to this is the
servlet 2.5 technology using the open-source
Jetty Web Server, along with accompanying technologies such as
JSP.
JavaServer Faces
Jakarta Faces, formerly Jakarta Server Faces and JavaServer Faces (JSF) is a Java specification for building component-based user interfaces for web applications and was formalized as a standard through the Java Community Process being part o ...
operates with some workarounds. A newer release of App Engine Standard Java in Beta supports Java8, Servlet 3.1 and Jetty9.
Though the integrated database,
Google Cloud Datastore, may be unfamiliar to programmers, it is accessed and supported with
JPA,
JDO, and by the simple low-level API. There are several alternative libraries and frameworks you can use to model and map the data to the database such as Objectify, Slim3 and
Jello framework.
The
Spring Framework works with GAE. However, the Spring Security module (if used) requires workarounds.
Apache Struts 1 is supported, and
Struts 2 runs with workarounds.
The
Django web framework
Django ( ; sometimes stylized as django) is a free and open-source, Python-based web framework that follows the model–template–views (MTV) architectural pattern. It is maintained by the Django Software Foundation (DSF), an independent organi ...
and applications running on it can be used on App Engine with modification. Django-nonrel aims to allow Django to work with non-relational databases and the project includes support for App Engine.
Reliability and support
All billed App Engine applications have a 99.95% uptime
SLA.
App Engine is designed in such a way that it can sustain multiple datacenter outages without any downtime. This resilience to downtime is shown by the statistic that the High Replication Datastore saw 0% downtime over a period of a year.
Paid support from Google engineers is offered as part of Premier Accounts.
Bulk downloading
SDK version 1.2.2 adds support for bulk downloads of data using Python. The open source Python projects gaebar, approcket, and gawsh also allow users to download and back up App Engine data. No method for bulk downloading data from GAE using Java currently exists.
Restrictions
*Developers have read only access to the filesystem on App Engine. Applications can use only virtual filesystems, like gae-filestore.
*App Engine can only execute code called from an HTTP request (scheduled background tasks allow for self calling HTTP requests).
*Users may upload arbitrary Python modules, but only if they are pure-Python;
C and
Pyrex modules are not supported.
*Java applications may only use a subset (The JRE Class White List) of the classes from the JRE standard edition.
This restriction does not exist with the App Engine Standard Java8 runtime.
*A process started on the server to answer a request can't last more than 60 seconds (with the 1.4.0 release, this restriction does not apply to background jobs anymore).
*Does not support sticky sessions (a.k.a. session affinity), only replicated sessions are supported including limitation of the amount of data being serialized and time for session serialization.
Major differences
Differences with other application hosting
Compared to other scalable hosting services such as
Amazon EC2, App Engine provides more infrastructure to make it easy to write scalable applications, but can only run a limited range of applications designed for that infrastructure.
App Engine's infrastructure removes many of the system administration and development challenges of building applications to scale to hundreds of requests per second and beyond. Google handles deploying code to a cluster, monitoring, failover, and launching application instances as necessary.
While other services let users install and configure nearly any *NIX compatible software, App Engine requires developers to use only its
supported languages, APIs, and frameworks. Current APIs allow storing and retrieving data from the document-oriented
Google Cloud Datastore database; making HTTP requests; sending e-mail; manipulating images; and caching. Google Cloud SQL can be used for App Engine applications requiring a relational
MySQL
MySQL () is an open-source relational database management system (RDBMS). Its name is a combination of "My", the name of co-founder Michael Widenius's daughter My, and "SQL", the acronym for Structured Query Language. A relational database ...
compatible database backend.
Per-day and per-minute quotas restrict bandwidth and CPU use, number of requests served, number of concurrent requests, and calls to the various APIs, and individual requests are terminated if they take more than 60 seconds or return more than 32MB of data.
Differences between SQL and GQL
Google App Engine's integrated
Google Cloud Datastore database has a
SQL-like syntax called "
GQL" (
Google Query Language
Google Cloud Datastore (Cloud Datastore) is a highly scalable, fully managed NoSQL database service offered by Google on the Google Cloud Platform. Cloud Datastore is built upon Google's Bigtable and Megastore technology. Google Cloud Datastore ...
). GQL does not support the
Join statement. Instead, one-to-many and many-to-many relationships can be accomplished using .
Google Firestoreis the successor to Google Cloud Datastore and replaces GQL with a document-based query method that treats stored objects a
collections of documents
Portability concerns
Developers worry that the applications will not be portable from App Engine and fear being locked into the technology. In response, there are a number of projects to create open-source back-ends for the various proprietary/closed APIs of app engine, especially the datastore.
AppScale, CapeDwarf and TyphoonAE
are a few of the open source efforts.
AppScale automatically deploys and scales unmodified Google App Engine applications over popular public and private cloud systems and on-premises clusters. AppScale can run Python, Java, PHP, and Go applications on EC2, Google Compute Engine, Softlayer, Azure and other cloud vendors.
TyphoonAE
can run Python App Engine applications on any cloud that support linux machines.
Web2py web framework offers migration between SQL Databases and Google App Engine, however it doesn't support several App Engine-specific features such as transactions and namespaces.
Kubernetes
Kubernetes (, commonly stylized as K8s) is an open-source container orchestration system for automating software deployment, scaling, and management. Google originally designed Kubernetes, but the Cloud Native Computing Foundation now maintai ...
is an open-source job control system invented by Google to abstract away the infrastructure so that open-source (e.g. Docker) containerized applications can run on many types of infrastructure, such as
Amazon Web Services
Amazon Web Services, Inc. (AWS) is a subsidiary of Amazon.com, Amazon that provides Software as a service, on-demand cloud computing computing platform, platforms and Application programming interface, APIs to individuals, companies, and gover ...
,
Microsoft Azure, and others. This is one of Google's answers to the portability concern.
Backends
In
Google I/O
Google I/O (or simply I/O) is an annual developer conference held by Google in Mountain View, California. "I/O" stands for Input/Output, as well as the slogan "Innovation in the Open". The event's format is similar to Google Developer Day.
H ...
2011, Google announced ''App Engine Backends'', which are allowed to run continuously, and consume more memory. The Backend API was deprecated as of March 13, 2014 in favor of the Modules API.
Google Cloud SQL
In Oct 2011, Google previewed a zero maintenance SQL database, which supports JDBC and DB-API. This service allows creating, configuring, and using relational databases with App Engine applications. Google Cloud SQL supports MySQL 8.0, 5.7 and 5.6.
Usage quotas
Google App Engine requires a Google account to get started, and an account may allow the developer to register up to 25 free applications and an unlimited number of paid applications.
Google App Engine defines usage quotas for free applications. Extensions to these quotas can be requested, and application authors can pay for additional resources.
See also
*
Amazon Web Services
Amazon Web Services, Inc. (AWS) is a subsidiary of Amazon.com, Amazon that provides Software as a service, on-demand cloud computing computing platform, platforms and Application programming interface, APIs to individuals, companies, and gover ...
*
AppScale
*
AWS Elastic Beanstalk
*
Bluemix
IBM Cloud, (formerly known as Bluemix) is a set of cloud computing services for business offered by the information technology company IBM.
Services
As of 2021, IBM Cloud contains more than 170 services including compute, storage, networkin ...
*
Cocaine (PaaS)
Cocaine (Configurable Omnipotent Custom Applications Integrated Network Engine) was an open-source PaaS system for creating custom cloud hosting apps that are similar to Bluemix, Google App Engine, or Heroku. Several services have already been ...
*
Engine Yard
Engine Yard is a San Francisco, California based, privately held platform as a service company focused on Ruby on Rails, PHP and Node.js deployment and management.
History
Engine Yard, founded in 2006, offers a cloud application management pl ...
*
Force.com
Salesforce, Inc. is an American cloud-based software company headquartered in San Francisco, California. It provides customer relationship management (CRM) software and applications focused on sales, customer service, marketing automation, an ...
*
GoGrid
GoGrid was a cloud infrastructure service, hosting Linux and Windows virtual machines managed by a multi-server control panel and a RESTful API. In January 2015, Datapipe announced the acquisition of GoGrid.
Awards & recognitions
In July 2008, ...
*
Google Apps Script
*
Google Cloud Platform
*
Heroku
*
Jelastic
*
Microsoft Azure
*
OpenShift
*
Oracle Cloud Platform
*
Rackspace Cloud
The Rackspace Cloud is a set of cloud computing products and services billed on a utility computing basis from the US-based company Rackspace. Offerings include Cloud Storage ("''Cloud Files''"), virtual private server ("''Cloud Servers''") ...
*
Skytap
Skytap, Inc. is a private company based in Seattle, Washington offering a public service for cloud computing. Skytap provides self-service access to environments for learning, developing, testing, training, and running enterprise applications. T ...
*
VMware
VMware, Inc. is an American cloud computing and virtualization technology company with headquarters in Palo Alto, California. VMware was the first commercially successful company to virtualize the x86 architecture.
VMware's desktop software ru ...
References
Bibliography
*
*
*
*
*
*
*
External links
Official marketing page*
Official Google Cloud Platform BlogRelease notes- a technical talk by Google engineer
Guido van Rossum at
Stanford University.
online video archiveBenefits of adopting Google App EngineUsing an external database with Google App EngineJava Frameworks and libraries supportedWeb2py book -- online documentation -- Google App Engine deployment recipeGoogle Cloud SQL Sample ProjectsGoogle Cloud supports node.jsAppmd: Python development sample project. App Engine/django/Google Closure/Endpoints/Material design
{{Authority control
App Engine
Google App Engine (often referred to as GAE or simply App Engine) is a cloud computing platform as a service for developing and hosting web applications in Google-managed data centers. Applications are sandboxed and run across multiple servers. ...
Cloud platforms
Serverless computing
Computer-related introductions in 2008