| advertise add site services publishers database health videos | ![]() | about toolbar stats live show health store more stuff JOIN/LOGIN |
Directories, Google, Search engines, ADD URL hypnosisdirectory.net | Louisville Search Engine Marketing, Search Engine Optimization, Pay per... vocisinc.com | Health: Search Engines, directory for Health/Search Engines healthysense.com | Law Firm Search Engine Optimization | Attorney Search Engine... buttocksenlargement.com |
"GAE" redirects here. For the airline, see Grand Aire Express.
Google App Engine is a platform for developing and hosting web applications in Google-managed data centers. It was first released as a beta version in April 2008. Google App Engine is cloud computing technology. It virtualizes applications across multiple servers and data centers.[1] Other cloud-based platforms include offerings such as Amazon Web Services and Microsoft's Azure Services Platform. Google App Engine is free up to a certain level of used resources. Fees are charged for additional storage, bandwidth, or CPU cycles required by the application.[2]
[edit] Supported programming languages and frameworksCurrently, the supported programming languages are Python and Java (and, by extension, other JVM languages such as Groovy, JRuby, Scala, and Clojure). Python web frameworks that run on Google App Engine include Django, CherryPy, Pylons, and web2py, as well as a custom Google-written webapp framework and several others designed specifically for the platform that emerged since the release[3]. Google has said that it plans to support more languages in the future, and that the Google App Engine has been written to be language independent. 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.[4][5] [edit] Differences from other application hostingCompared 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[6]. 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 Python or any JVM language (e.g. Java, Groovy, JRuby, Scala) as the programming language and a limited set of APIs. Current APIs allow storing and retrieving data from a BigTable non-relational database; making HTTP requests; sending e-mail; manipulating images; and caching. Most existing Web applications can't run on App Engine without modification, because they require a relational database. 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 30 seconds or return more than 10MB of data. [edit] Differences between SQL and GQLGoogle App Engine's datastore has a SQL-like syntax called "GQL". Select statements in GQL can be performed on one table only. GQL intentionally does not support the Join statement, because it seems to be inefficient when queries span more than one machine.[7] Instead, one-to-many and many-to-many relationships can be accomplished using ReferenceProperty().[8] This shared-nothing approach allows disks to fail without the system failing.[9] The where clause of select statements can perform >, >=, <, <= operations on one column only. Therefore, only simple where clauses can be constructed. Switching from a relational database to the Datastore requires a paradigm shift for developers when modeling their data. App Engine limits the maximum rows returned from an entity get to 1000 rows per Datastore call. This constraint does not affect web applications written to be read by humans, as long as the sorting order of the results can be precomputed into a property, as these usually do not list as many as 1000 records on a single page (they may have paging and caching mechanisms in place). If an application needs more than 1000 records per operation, it can use its own client-side software or an Ajax page to perform an operation on an unlimited number of rows by issuing queries sequentially, at least in a limited way, because offsetting the result set of a query costs time, so long resultsets can run into the request timeout. Unlike a relational database the Datastore API is not relational in the SQL sense. [edit] Restrictions
[edit] PortabilityDevelopers worry that the applications will not be portable from App Engine and fear being locked into the technology.[13] The Django web framework and applications running on it can be used on App Engine with modification. Applications developed for the Grails web application framework may be modified and deployed to Google App Engine with very little effort using the App Engine Plugin. [edit] Downloading dataSDK version 1.2.2 adds support for bulk downloads of data.[14] The open source projects gaebar,[15] approcket,[16] and gawsh[17] also allow users to download and backup App Engine data. [edit] Quota ratesApp Engine defines usage quotas for free applications. Extensions to these quotas can be requested, and application authors can pay for additional resources.[18] [edit] Hard limits
[edit] Free quotasApplication creators who enable billing pay only for CPU, bandwidth, storage, and e-mails used in excess of the free quotas. Limits marked with * are increased for application authors who enable billing, even if their application never uses enough resources to incur charges. Free quotas were reduced on May 25, 2009[19] and were reduced again on June 22, 2009.[20]
[edit] CompetitionThe service competes with Amazon Web Services, a set of application services that enable web sites to host files and execute code on Amazon's servers. Many tech analysts have been predicting Google's entry into this field for years. "Google finally realizes it needs to be the web platform," Techdirt publisher Mike Masnick wrote. "The easier it is to develop and deploy highly scalable web applications, the more innovative and creative solutions we're going to start to see."[21] Other competitors include Microsoft's Azure Services Platform and Heroku. [edit] See also[edit] References
[edit] Bibliography
[edit] External links
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ↑ top of page ↑ | about thumbshots |