vote up 7 vote down star
5

Pros & Cons of Google App Engine

[An Updated List 21st Aug 09]

Help me Compile a List of all the Advantages & Disadvantages of Building an Application on the Google App Engine

Pros:
1) No Need to buy Servers or Server Space (no maintenance).
2) Makes solving the problem of scaling much easier.

Cons:
1) Locked into Google App Engine ??
2)Developers have read-only access to the filesystem on App Engine.
3)App Engine can only execute code called from an HTTP request (except for scheduled background tasks).
4)Users may upload arbitrary Python modules, but only if they are pure-Python; C and Pyrex modules are not supported.
5)App Engine limits the maximum rows returned from an entity get to 1000 rows per Datastore call.
6)Java applications may only use a subset (The JRE Class White List) of the classes from the JRE standard edition.
7)Java applications cannot create new threads.

Known Issues!!
http://code.google.com/p/googleappengine/issues/list

Hard limits

Apps per developer - 10
Time per request - 30 sec
Files per app - 3,000
HTTP response size - 10 MB
Datastore item size - 1 MB
Application code size - 150 MB

Pro or Con?
App Engine's infrastructure removes many of the system administration and development challenges of building applications to scale to millions of hits. 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 Java 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.

flag
And your question is? – lutz Aug 20 at 13:43
Nice how you manage to turn features like Cron and Task Queues into 'cons'. – Nick Johnson Aug 20 at 17:38
I am a beginner looking to use Google App Engine, I have no idea what Cron or Task Queues does. You can help me pointing out to some beginner tutorials or books. Its a Wiki!! – Rishi Aug 20 at 19:31

6 Answers

vote up 2 vote down

Pros:

  • Scalable
  • Easy and cheaper (in short term).
  • Nice option for start-ups/individuals.
  • Suitable for apps that just store and retrieve data.

Cons:

  • Not suitable for CPU intensive calculations. They are slower and expensive.
  • Scalability doesn't matter much cuz if an app works at Google scale then probably it makes enough money to run on its own servers.
  • They have lots of limitations thrown here and there, as a result deep data analysis is difficult. Like you cannot produce a social graph using GAE.

I would say its not meant for serious businesses and expensive in long run.

link|flag
Thanks for the detailed analysis, Can u help me pick out the cons & pros in detail(in the Question). Also if possible give me an upvote, i need one more to be able to upvote the answers – Rishi Aug 20 at 14:28
Answer some questions here and there so that I can upvote your answers. – Arpit Tambi Aug 20 at 15:29
vote up -1 vote down

Con: No old versions of GAE as a platform are available. You can only use what Google gives you now.

link|flag
In What ways will Older Versions be useful – Rishi Aug 20 at 14:07
If your app worked on them? Suppose MS pressed a button and upgraded every PC to windows 7 instantly - would that create a problem for developers? – Martin Beckett Aug 20 at 16:55
1  
Pro: The App Engine environment is seamlessly upgraded and bugfixed with a mind to backwards-compatibility, without any user intervention required. :) – Nick Johnson Aug 20 at 17:42
vote up 2 vote down

Con: All your bases are belong to us

... On a serious note:

Con: You don't control the environment your application runs in. The same cons as with outsourcing any component. Fun for toys, not for business (yet) IMHO.

Various things like API for Google proprietary backends such as their database system and other 'lockdowns' and frameworks that mean your code is tied, in some loose sense to their system can create cost issues later if you want to migrate from GAE. Of course, you could abstract these.

I like GAE, AppJet and others. They are cool. But everything has its place. If you want freedom and the ability to control your language's modules, API, syntax/stdlib versions and whatnot ... don't relinquish control to a service provider.

The lack of standards for environments and specifications for what your app can expect worries me in the cloud arena.

common sense stuff really.

link|flag
Please elaborate environment control. Also what are the difficulties in porting your application to some other Domain – Rishi Aug 20 at 14:02
vote up 1 vote down

Con: Limited to Java and Python

link|flag
4  
Removing the 'Java' part turns this into a Pro. – Aiden Bell Aug 20 at 14:02
1  
It's not true! With Java you can use JRuby for example, or Jython (maybe not) or Scala, Groovy, etc... – Luke Aug 20 at 14:05
What about the Languages Listed here groups.google.com/group/google-appengine-java/… – Rishi Aug 20 at 14:05
Most are JVM based language. Hmmm... – Randell Aug 20 at 14:07
By Modifying some part of your code you can deploy many (JVM)languages there – Rishi Aug 20 at 14:10
vote up 1 vote down

Con: Not available in some countries (Argentina).

Edit

Available worldwide, but only through Google Groups for App Engine.

link|flag
Definitely available there - you just need to leave a message in the group to get your account activated if you can't receive SMSes. – Nick Johnson Aug 20 at 17:43
Didn't know that! – voyager Aug 20 at 18:19
appengine.google.com/waitlist/sms_issues – voyager Aug 20 at 18:24
voyager's link is correct, and my own recommendation is out of date - using that link is now the best way to get your account activated if you can't receive SMSes. :) – Nick Johnson Aug 20 at 19:13
vote up 2 vote down

Pro: Unlimited scalabity to your application and scales with demand.

link|flag
2  
Combine your answers please – Rishi Aug 20 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.