Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the material differences between the new Azure Web Sites and the traditional Azure Web Roles for an ASP.NET MVC application? What reason would I choose a "web site" over a "web role" or vice versa?

Let's assume that I would need equal capacity in either case (e.g. 2 small instances). The prices seem comparable other than the fact that there is a 33% temporary discount for web sites while they are in their preview period.

Are there things that I can do with a "web site" that are difficulty or impossible with a web role? For example, does it become easy to put multiple web sites in a single set of VMs using "web sites"? Do I lose anything with a "web site" vs a "web role"? Ability to fine tune IIS? Ability to use the Cache service locally?

share|improve this question

6 Answers

up vote 50 down vote accepted

Web Roles give you several features beyond Web Sites:

  • Ability to run elevated startup scripts to install apps, modify registry settings, install performance counters, fine-tune IIS, etc.
  • Ability to split an app up into tiers (maybe Web Role for front end, Worker Role for backend processing) and scale independently
  • Ability to RDP into your VM for debugging purposes.
  • Network isolation
  • Support for Virtual Networks

Web Sites have advantages over Web Roles though:

  • Near-instant deployment with deployment history / rollbacks
  • github, local git, ftp, CodePlex, DropBox, BitBucket deployment support
  • Ability to roll out one of numerous CMS's and frameworks, (like WordPress, Joomla, Django, MediaWiki, etc.)
  • Use of SQL Database or MySQL
  • Simple and fast to scale from free tier to shared tier to dedicated tier

Here's a screengrab I just took from the gallery selection form: enter image description here

I think Web Sites are a great way to get up and running quickly, where you can move from shared to reserved resources. Once you outgrow this, you can then move up to Web Roles and expand as you need.

share|improve this answer
12  
Now why couldn't Microsoft just say that? As a developer it's really nice to have a bottom line like this. – Gleno Jun 8 '12 at 18:11
2  
+1 The azure web site is not clear. – Blam Jun 14 '12 at 22:22
Besides Git + ftp another great one is PublishSettings (can also be used in WebMatrix 2 for instance) – XIII Oct 31 '12 at 13:15
4  
Split up into tiers is not a differentiating factor. You can use Worker roles with Web Sites. – RickAndMSFT Nov 13 '12 at 19:51
Regarding tiers: With Web Sites, you'd need to connect to a Worker via external endpoint, as Web Sites don't support Virtual Networks. Further: You'd have to split your code across multiple deployments (one for Web Sites, one for Cloud Service w/worker role). With Cloud Service, you can easily partition your code into scalable tiers, and then size and scale each tier independently, all while having internal communication between said tiers. This is what I meant when pointing out tiers as a differentiator of Cloud Services (web/worker). – David Makogon May 4 at 1:13

Add more to @David response:

With Windows Azure Websites, you don't have control over IIS or web Server because you are using a resources slice along with hundreds of other website on the same machine, you are sharing resources like any other so there is no control over IIS.

The big difference between a website shared and Azure web role is that a web-site is considered process bound while roles are VM bound.

Websites are stored on a content share which is accessible from all the "web servers" in the farm so there is no replication or anything like that required.

Windows Azure websites can not have their own host name instead they must use websitename.azurewebsites.net only and you sure can use CNAME setting in your DNS provider to route your request exactly same with previous Windows Azure Role only when they are running in reserved mode. CNAME setting is not supported for shared websites.

share|improve this answer
AFAIK WebRoles don't get their own hostname either - they're all rolename.cloudapp.net. Unless there's some feature I don't know about? – Brian Reischl Jun 8 '12 at 14:25
Can't you use DNS to create a CNAME alias pointing from www.yourdomain.com to websitename.azurewebsites.net? – Bernard Vander Beken Jun 8 '12 at 14:35
I believe for WA Web Sites, only apps running with reserved instances (dedicated VMs) are able to have custom domains mapped to them. – smarx Jun 8 '12 at 18:39
@Steve, I am verifying that and will update here ASAP – AvkashChauhan Jun 8 '12 at 18:40
1  
For what it's worth, a lot of the info in this answer is no longer correct (though it was in June 2012): Web Sites can now have custom domains. Web sites can run in a "reserved" mode, which is essentially a VM, but completely managed. – Jay Querido Apr 10 at 2:51
show 1 more comment

I've just posted a comprehensive blog post on this very subject at http://robdmoore.id.au/blog/2012/06/09/windows-azure-web-sites-vs-web-roles/.

An excerpt from my conclusion: If you need enormous scale, SSL, Asian or West US data centres, a non-standard configuration (of IIS, ports, diagnostics, security certs or start up scripts), RDP or cost-effective Worker Roles (combined with your Web Role) then you are going to have to stick to Web Roles for now.

Otherwise, Web Sites is a great option!

share|improve this answer
Nice, detailed blog post, thanks! – Flynn Feb 7 at 8:48

Azure Web Role is like a virtual private host. You get a VM that acts as your web server, and you own that VM instance.

Azure Web Sites are like an elastic shared hosting service. You deploy your app to a web server that is not controlled by you and which also servers other users' sites. You can scale your site up and down (at some extra charge) to make it more elastic as your resource needs shift.

share|improve this answer

There is one more scenario that is up the air: After these 500 exceptions are eliminated, they haven't said anything about the ability of Azure Websites to handle wildcard CNAME's. Several of us are using Nate's Web Role Accelerator in Cloud Services, becuase a one-line hack provided wildcard subdomain capability in Nate's software. We can't move these wildcard subdomain apps until we know that Azure Websites will be able to handle them. If it won't ever be able to do that, then it goes down as a positive on the Web Role side of the equation. Also of note is that with pricing being exactly the same (after the preview discount expires), I'm not sure I want to give up my access to RDC and Event Viewer (just to mention two things).

share|improve this answer

A web role is a virtual machine that hosts multiple websites

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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