lang="en-US"> Comparing Google App Engine and Amazon EC2 on Technology - Knoldus Blogs
Site icon Knoldus Blogs

Comparing Google App Engine and Amazon EC2 on Technology

Reading Time: 6 minutes

Recently, at a prospective client, we were asked to make a comparison between Amazon EC2 and Google App Engine. Having recently done fairly large-scale projects on both of them, we think that we could make a fairly valid summarization of our thoughts. With this post, I would like to put our thoughts out for consumption and debate.

The three parameters on which I would like to compare the two are

1. Technology benefits
2. Business benefits and
3. Future Trends

Grab a coffee. Let us start.

Technology

Most of us know that GAE falls under the category of PaaS and EC2 falls under the category of IaaS. A quick recap of what it means.

Amazon gives you access to the boxes in the cloud with the operating system and you do the whole setup required for your application, or you can use the AMI(Amazon Machine Image). Pretty powerful if you want to build a highly complex custom application which plays around with the environmental parameters and is dependent on the underlying OS, storage and network needs. The platform is pretty low-level and you can tweak most of the things to your need.

GAE on the other hand gives you a complete platform, rich with SDK (along with an Eclipse plug-in) and services to build and deploy your application. You do not have fine grain control over the OS, hardware, storage and there are certain limitations like writing to file system, use of threads which ensures that the platform cannot be taken hostage by an application.

In a nutshell,

IaaS: Raw Hardware (Processors, Networks, Storage).
PaaS: OS, System Softwares, Development Framework, Virtual Machines.

Let us compare the two cloud vendors on technology,

  1. Services provided – This is where GAE beats Amazon hands down with the richness of services provided. GAE provides ready to use services which help in rapid application development.These are services like Blobstore, Images, Mail, Memcache, Multitenancy, Oauth, Task Queues, URL Fetch, Users, XMPP For the sake of comparison let us assume that you have to set up your own infrastructure for Memcache, Mail and Multi-tenancy (all M’s). How much time is it going to take for you to install these and start using them. More than a couple of hours I can bet. With GAE, these services are available to you on the platter ready to be consumed. I guess you would agree with me, there is a substantial amount of work which needs to be done in order to make an application multi-tenant. On the other hand, with GAE multi-tenancy support, we could make a non multi-tenant application multi-tenant in a matter of four hours. Impressive isn’t it?
  2. Administration – Here again GAE would take a lead as compared to Amazon, as with GAE there is virtually nil administration that you have to do once your application is deployed. The scaling is provided for free and is built-in. You do not have to pump new instances into service when your application is experiencing load. New instances are spun-off in real-time. With Amazon you would have to keep track of traffic (now automated through scripts) and spin-off new instances on the basis of your configuration. So if my peak load is 2x+ y then spin-off 2 more instances of app server.
    Moreover, with GAE there is no administration overhead of upgrading the app server instances and installing new load balancers as all of that is taken care of automagically.
  3. Abstraction – Closely tied to the above point is the level of abstraction. GAE provides a level of abstraction where you are ONLY worried about your application and the business logic and not about managing the underlying infrastructure. As Nick Johnson put it, as a general rule of thumb pick the platform which is at the highest level of abstraction so that your needs are met without looking under the hood.
    In my view, if your core business is transportation of cargo then would you rather buy a truck which takes you efficiently from point A to B without looking under the hood or would you rather accumulate the parts and build a truck of your own and then transport the cargo.
    In the software world we have seen frameworks like Grails, RoR which provide scaffolding to do the plumbing gain a wide acceptance just because they offer a higher level of abstraction as compared to coding in plain Java.
  4. Reliability –As far as my knowledge both are very reliable options. Both have a huge install base which is growing by the day. App Engine makes it status transparent to the community. Historically, the uptime of Amazon has been better than GAE.
  5. Portability –By the very nature of providing low-level access to the type of OS to use and the development frameworks to use, Amazon is more portable than GAE. However, to dispel the fears of lock in and portability GAE gives out explicit instructions on how to move away from the App Engine platform with all the data that you own. Also applications like AppScale allow applications built on GAE to be ported with ease onto Amazon EC2 or any other cloud for that matter. AppScale is a platform that allows users to deploy and host their own Google App Engine applications. It executes automatically over Amazon EC2 and Eucalyptus as well as Xen and KVM .
  6. Storage –Appengine at present heavily relies on Bigtable, for which developer needs to think from a totally different angle then how we all are use to using relational databases. It has a JPA & JDO api to access it but it doesn’t supports all the JPA & JDO feature specially the relations part of it. Google also have recently announced that they will soon be launching the App Engine for business with proper SQL Support but again as Amazon it comes at a cost. Where as on Amazon EC2 it all boils down to you choice of SQL database you want to use. You can use Oracle, MySQL etc which gives you quick and easy development of backend code.
  7. Application Maintenance and Upgrade – is a breeze with GAE. GAE provides with a admin dashboard detailing various aspects of the application, this includes log viewer and data viewer. One application can have multiple versions and you have the capability of making a new version default as soon as it is tested and ready for production. With Amazon you have to take care of most of the administration and upgrades yourself since it is an IaaS.
  8. Development Restrictions – With GAE you would have to deal with restriction that come as a part of the platform. There are hard circuit breakers to kill your query if it is taking too long. No threading. Restricted JDK, there are some classes and features which are blacklisted and hence cannot be used. No writing to the file system. A few more.
    While on the face of it, it may seem absurd but when you are offering platform as a service you have to keep some restrictions so that applications on your platform do not violate the rules of the platform in such a way such that the platform becomes unavailable.
    I would assume that 90% of the business applications would be able to work around these restrictions. In the systems that require heavy use of threading, file system etc the better choice would be to use Amazon with all the low-level capabilities that it would provide.
  9. Languages Supported – Right now GAE supports Java and Python for development with BigTable as the datastore. However, any language which gets converted to bytecode and can execute on the JVM is capable of running on the app engine. If you would like to code on anything else then the best bet is Amazon which would support anything as long as you can install it on the OS and the hardware that they provide. There are many interesting projects done in C#, .NET, ASP.NET MVC / Visual Studio which are hosted on Amazon. The interesting thing is that despite Microsoft Azure being there, a lot of MS based projects are hosted on Amazon, thus making it the platform of choice for these languages.

In a nutshell, Amazon was early in the market, and has leveraged Internet standards and open source platforms to create a very flexible platform. Google is leveraging the work it has done with big databases and its internal development methods to create a powerful but more restrictive environment. At its core, Amazon’s EC2 allows you to scale any computer instance to multiple instances, so you have total control over what’s available on each virtual box. AppEngine abstracts away from the operating system, the concept of a computer instance. If you are building a web application supported by App Engine and these would include the enterprise level applications then the winner is clear as long as you don’t need special functionality from the operating system. If you need more control over your system environment or special OS-specific tools then Amazon EC2 is your preferred way.

In the next post, we would compare the two vendors on business parameters.

28.63277877.219722
Exit mobile version