views:

452

answers:

3

What is the difference between Windows Azure and Amazon Elastic Compute Cloud?

Should I go with Azure or EC2?

A: 

Windows Azure is a service that falls in the market category "PaaS" (Platform as a Service) of the Cloud Computing market.

Windows Azure still falls somewhat "in between" the IaaS category and the PaaS category (with regards to another service categorized in this e.g. Google AppEngine).

Amazon Cloud Computing: I do not understand what you mean by this. Are you referring to the whole service offering of Amazon? a product of Amazon in the Cloud Computing category?

Updated: For more information, please consult a similar question: http://stackoverflow.com/questions/1830142/what-is-cloud-computing

jldupont
A: 

Had to do more research and correct previous response. They both support application and databases in a cloud. Amazon is also offering the ability to run Windows Server and SQL Server. Microsoft offers SQL Server in the form of SQL Azure.

Amazon has a different pricing structure between Linux and Windows. http://aws.amazon.com/ec2/ I couldn't find any difference with Microsoft Pricing

Jeff O
I'm a complete azure noob, but i guess i've seen something about PhP and RoR on Azure. This answer seems kind a wrong.
Arnis L.
This is actually not a very good answer. They are fundamentally different offerings - it's not about the programming technologies involved. Besides, microsoft is supporting PHP, Python etc. on Azure.
U62
+2  A: 

Azure is a service that allows you to upload an application - the cloud system will then run it on an arbitrary number of physical machines in order to provide reliability and capacity. This is done largely transparently to your code. Billing is done on the basis of number of requests/data transfered/etc.

Amazon EC2 is a service that allows you to rent one or more virtual machines running Linux/Windows or some other operating system on a per hour basis. Any reliability and scaling to multiple machines you will have to code into your application yourself.

U62