vote up 10 vote down star
13

From a developer point of view which platform would you consider for a large social web application? If you could provide some details on what you consider to be the strengths of which alternative it would be great.

flag

7 Answers

vote up 35 vote down check

I've written the same app on GAE (Python and now Java) and Azure. I'll probably continue to use both, for different things. Here are a few thoughts that I'll keep updating:

Reasons to use GAE:

  • You don't pay until your app grows quite a bit. With Azure, you pay almost $100 each month, even if you don't have a single website visitor. If your db goes over 1GB, you pay an extra $90 ($9->$99) for storage.
  • GAE's payment is also very fine-grained - only for the resources you use. Azure (and AWS) is "blocky" - you pay something for each server instance you'll run (plus resources), irrespective of whether it gets any use at all.
  • GAE has the lightest admin load. Once you're setup, deploying and re-deploying is quick and they'll auto-everything. For example, you don't worry about how many servers your app is using, how to shard the data, how to load-balance.
  • Mail just works. At the time of writing, Azure doesn't offer SMTP out so you need a 3rd party server.
  • Great integration with many of the Google offerings - calendars, mail, whatever. You can delegate user management to Google if you don't want control over your user base.
  • With GAE you know any features they add to the store, you'll get. With Azure, you get the feeling Sql Azure Database will get most of the love but it'll be more expensive. Azure Storage is likely to have the most gotchas. No relational integrity, no order-by, you'll fiddle with the in-memory context more. GAE's store has far fewer restrictions and more features than Azure Tables.
  • Good choice if you're using Python or JVM-based languages already. Many languages compile to Java bytecode nowadays.
  • Updating the app is very fast. For Python, I had a shortcut key setup and it took no time at all. I now use the Eclipse Plugin for Java and it works very well. Azure is more fiddly.
  • A locally tested app will probably run on the cloud without (much or any) changes. With Azure, the config is different and I spent some time stopping-deleting-building-uploading-starting before I got it right.
  • GAE has a great UI that includes a log viewer a data editor. With Azure, you currently have to find external viewers/editors for this.
  • GAE lets you have multiple versions of your application running on the same datastore. You can deploy, test a version and then set the current 'live' version when you're ready. You can change back if something goes wrong.


    Reasons to use Azure:

  • I've read of users getting "I think you're a robot" messages, like sometimes pop up on other Google properties. I haven't seen it, but it would alarm me.
  • Azure seems to be better designed if you have a SOA-type approach. Their architectures seem to benefit from experience in the enterprise world. GAE seems more focused on simply serving web pages.
  • You can run the app under debug, put in breakpoints, etc.
  • Azure has a "staging" environment where you can deploy to the cloud, but not make it live until you're happy it works.
  • I'm using .Net for other things, and integrating them with .Net on the backend is much easier than with GAE. (Update - using Java on GAE works fine, and the 10-second timeout is now 30 seconds).
  • Azure has two approaches to storage, offering more choice. They are SQL Azure Database (SAD) which is a relational DB, and Azure Storage, which consists of non-relational tables, blobs and queues. If you have an investment in SQL Server then SAD will be easy to move to, but is quite costly and might be less scalable.
  • Integration with many MS "Live" offerings.

    So, no obvious answers. I'm defaulting to App Engine at the moment because of costs and ease of use. I might use Azure for very MS-oriented apps. I use Amazon S3 for downloads but likely won't use EC2 because I prefer leaving everything under the application level to the experts.

  • link|flag
    1  
    +1 for experience using both – hyperslug Jul 15 at 5:37
    2  
    Richard, maybe another plus for Azure is having a relational database. Bigtable's shards are a somewhat foreign paradigm. – hyperslug Jul 15 at 5:42
    1  
    Thanks hyperslug - changed storage point – Richard Watson Jul 15 at 12:45
    App Engine also allows you to stage multiple versions of your app. Each version gets its own URL that you can test, and when you're ready to deploy just mark that version as the default. Easy to test, deploy, and if necessary roll back to a prior version if something goes wrong. – mb yesterday
    thanks mb, updated. – Richard Watson 17 hours ago
    vote up 32 vote down

    I'm clearly biased - I work on the App Engine team doing developer relations - but this is my take:

    They're not directly comparable. There's a set of apps you could write for any of them, but you'll be writing a different thing in each case. App Engine provides a restricted runtime environment - no writing to files, no sockets, and so forth - and a non-relational DBMS. But in return, you get a runtime environment that scales indefinitely, and a reasonable degree of assurance that your app will scale as big as you want it to.

    Azure, on the other hand, provides a slightly less constrained environment, which lets you write a wider array of apps, but requires you to write more - since you're implementing more of the stack yourself - and provides a much looser assurance of scalability.

    Finally, AWS provides the ultimate do-it-yourself solution. They provide the hardware, and the storage, and not much else. You build your stack from the ground up, maintain it, upgrade it, and so forth. Your app scales if and only if you write it to scale, which is no small challenge. But, you get complete control over your hardware.

    My advice would be: If your app fits the App Engine model - and a social network app is likely to be a pretty good example of ones that does - write your app on App Engine (Java or Python, your choice). It's cheaper, and it's much easier to write an app that scales.

    If your app doesn't fit the GAE model, pick Azure or AWS, depending on if you're writing for the MS stack, and on how much control you want over the execution environment. If most of your app fits on GAE, but small parts don't, you might consider a hybrid - for example, live serving on GAE, but storage on S3, or bulk processing on EC2.

    link|flag
    Great perspective, thanks! – Anthony Kanago Apr 26 at 21:38
    Totally agree with you – Mash Apr 26 at 22:53
    vote up 7 vote down
    • If you're .NET Developer - go to Azure.
    • If you're on Python or Java - go to Google.
    • If you're on Ruby - go to Amazon

    My personal choice right now would be Google with Java (even if I'm .NET most of the time). Think about costs - their schema is difficult to compare.

    Check out this article - http://www.infoq.com/news/2008/11/Comparing-EC2-App-Engine-Azure

    link|flag
    1  
    Not all .NET developers should go to Azure. Amazon EC2 is a perfectly acceptable option for them. But +1 for referencing the excellent article. – Andrew Arnott Apr 26 at 22:19
    Yes, Amazon is somewhat freedom of virtual machine, but the community mostly Ruby oriented initially... – Mash Apr 26 at 22:51
    1  
    AWS does support .Net developers on their Windows 2003 Server AMI but I suspect a good number of .Net developers would rather be deploying to Windows Server 2008 which has yet to materialise on AWS. If you're a regular on the AWS forums you may have picked up that Amazon is some what quiet on this issue. – Richard Dorman Aug 25 at 14:24
    vote up 3 vote down

    Like Arachnid, I may be biased, being a googler. However, I'm also an Amazon stockholder, so that bias may partly offset the first;-). No Azure experience (though I also hold MSFT stock, so I hope they, too, do well -- yet another bias;-).

    My very simple take on it is that App Engine easily offers you the ability to work (within its limitations) just by coding -- no system administration tasks are needed. AWS is much more flexible, but you will need substantial system administration work (and not really trivial at all) to take advantage of that flexibility. So in the end I'd second Arachnid's suggestion: if App Engine can meet your needs, absolutely go for it; if you need more flexibility, AWS seems the way to go (unless Azure's unknown-to-me capabilities should be a better match -- but I think AWS is going to be more flexible no matter what Azure can do, for example with AWS you can even pick which OS to use, if you need that).

    link|flag
    vote up 2 vote down

    I've just started working with Azure, and am already impressed you can do it in F#: http://code.msdn.microsoft.com/fsharpazure! So far, it's the only cloud platform allowing one to use functional programming in a managed way (of course you can do Haskell in EC2... or Algol 68 for that matter). I'm very impressed with the quality of Visual Studio integration -- you get a local "cloud" to test, DevFabric, with a storage which is a real SQL Server, so you can play before uploading. Can GAE do that? Looking at Azure, learning VS with F# (coming from Linux and OCaml), I wish I'd have switched to MS stack long ago for it. It's super easy to create SQL storage and inspect it in VS -- comes very handy. Open Source does not have a matching toolset and it's time folks give MS a fair consideration -- they've done an awesome job here. I'm surely sticking with my Mac OSX base (dual-booting into Vista), and my hunch is, with the ability of Azure to be developed locally, I'll be getting a separate Vista box for Azure development. .NET is truly overwhelming when you come from Unix pipe world -- PowerShell, SQL and LINQ, C# and F# (which is my key reason) -- but it turns out it all adds up and is worth learning in addition to, not instead of, Linux; and in all cases, Azure will widen your horizons.

    link|flag
    1  
    Azure does not have something that even remotely matches to functionality of Amazon Elastic Map Reduce (based on Open Source Hadoop). It does not even allow to set number of worker roles programmatically. – Rinat Abdullin Apr 27 at 7:40
    vote up 1 vote down

    I've started experimenting with Google App Engine fairly recently, and for a web social network I believe it would serve all your needs. It's easy to get the hang of it and can be used either with Python or Java. It is true it doesn't give you access over files, but for your application, GQL (the SQL-like interface to the database they provide) will probably be more than enough (and it's quite robust).

    One thing you might want to consider, is that an application on GAE can use an interface that will let users with Google Accounts, or accounts on a domain using Google Apps log in (a shortcut). You choose either of these. So if you already use a Google Apps Website, Google App Engine would be a great choice for you, as your users wouldn't have to register new accounts.

    EDIT: As Arachnid pointed out, it's not that you can't code your own login system. Sorry, if I got you worried there.

    As for the other two alternatives, I have only read about them and not tested them. But I believe GAE provides an easier framework, from my research, and as you mentioned great prices.

    In any case, you can try GAE out using the free quota on space and bandwidth and see if it fits your needs.

    Best of luck.

    link|flag
    Nitpick: GQL isn't the database. GQL is an SQL-like query language for the Python runtime, written on top of the datastore. You don't even have to use it - there's also the Query API. – Nick Johnson Apr 26 at 21:38
    Also, You can sign in any users you want in a GAE app - it's just that GAE provides a shortcut for using Google accounts. – Nick Johnson Apr 26 at 21:39
    Right, bad choose of words in both cases, thanks for pointing it out. Will edit it :) – alkar Apr 26 at 22:14
    vote up 0 vote down

    Look at the solutions each cloud offering provides and go the hybrid model. Some problems require a hammer and others a screwdriver. Get to know your tools and apply it to the right problem.

    link|flag

    Your Answer

    Get an OpenID
    or

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