Scott Hanselman

Penny Pinching in the Cloud: When do Azure Websites make sense?

August 09, 2013 Comment on this post [72] Posted in Azure
Sponsored By

imageI had a great conversation on Twitter with Frans Bouma about pricing where he asked a number of questions that weren't easily answered in 140 characters. The pricing for these things isn't clear or easy. It's not clear or easy because it's complicated.

Frans is thinking about moving his product’s website over to Azure but he’s thinking it’s too expensive for his one website. Good question.

Here's my own Q&A about Azure Websites and Pricing. Folks are always emailing me with confusion so I'm writing it up. If you email me questions from now on (since I have only so many keysleft.com) I'm going to point you here.

Disclaimer: This is written by me, not Marketing. I'm sure they'll be on the phone in a minute when they see this post. It doesn’t make it less true, though.

I wasn't an Azure fan until June of last year. I run all my sites on Azure except for this blog (which is at OrcsWeb where it's been for years).

Today, I have 13 websites and two VMs (one Linux and one Windows) running in Azure. 11 sites run in one VM instances with Azure Websites in the West US, and the other two are in different datacenters.

Q: I have a small website on a custom domain that I'm paying US$5 a month for at FooHost. Should I move to Azure?

A: Probably not. While you can get 10 free websites per data center (meaning, more than 10, technically) to play in Azure, if you want to point a custom domain at it you'll need at least one "shared" (multi-tenant, meaning you get a slice of a CPU) website. That's US$9.68 a month, running full time. If $9.68 is too rich for you, stick with your $5 host. However, you do get to use the same management tools and deployment subsystems even with just one shared site so it depends on what you find valuable. Free sites are great for development and test scenarios where you can experiment with new concepts before you start spending money.

If you’re trying to get by with the minimum for a few bucks a month, I don’t think it’s fair to compare Azure to a random $4.99 PHP host. You get command line management tools, lots of deployment choices, elastic scale in minutes whenever you want, etc.

Q: What if I am OK with $10 a month? What do I get with one shared site?

A: Whether it's 1 site or 500, all websites get Git deployment (and redeployment, also known as the "oh shit button") as well as deployment from Visual Studio and TFS. Everyone gets the same infrastructure and control panel.  You can also scale out to up to 6 shared instances if you need.

Each instance is a copy of your code running on a different shared server with its own quota of CPU and memory. We chose to limit the number of instances to 6 since having more than 6 instances ends up being more expensive than having one Standard server. You can have up to a 100 sites in Shared mode per data center, each site can have up to 6 instances.

Q: What about running my own VM and not using managed Websites?

A: If you know what you're doing, you can run your Website in a VM, but you need to setup IIS and manage it yourself. You need to keep the VM updated, and configure it however you want. But, you can get an extra small VM for $15 a month with 768MB RAM, which is nice. I run an instance of MySQL in one of these as well as PHP on Apache.

image

Q: When would I run a VM over a Website?

A. It comes down to what you want to manage. If you're cool with managing a VM and you want the flexibility, do that. If you want the OS and updates handled for you, as well as the deployment choices and scale out, use web sites.

image

Q: There's Free, Shared and Standard Websites. What's the difference?

A. Free means it's free, there's no uptime guarantee and you're low priority. I put demos and tests and dev on free stuff. I also run some services where it doesn't matter what the URL is because no one can see it. You can't use custom domains or SSL with free.

Shared means you're getting a slice of a computer and you're packed in with a lot of other folks on the shared plans. Most small websites (<20,000 PV) work just fine with shared.

Standard used to be called Reserved. You get your own VM and you can run ASP.NET, nodejs, PHP, etc (the same things you can run on Free and Standard). You can go from 1 core and 1.75G of RAM all the way up to 4 cores and 7G of RAM. I run all my sites in 1 standard small instance. Even with small I've got almost 2 gigs of ram and even though some of my sites (like Hanselminutes) do caching and may use 100-300 megs of RAM on a busy day, I've never had any issues.

If you need more than one server to run your sites you can scale out to 10 instances of your Standard server, if you need more than 10 server instances you can contact support services and they’ll work something out.

Here's the thing about clouds generally and Azure specifically. If you're not packing things densely you're not going to save money.

You can put up to 500 websites into a single instance using Azure Websites. That's not a typo. The more you put in the more value you get from your VM/standard instance.

Tip: Pack sites in tight. To be clear, if you are going to run more than 8 websites in Azure, you're a tool to not move into Standard/Reserved. It's just cheaper. Plus, if you have a bunch of sites in one Data Center (like, I had 10+ in West US) you want to put them all in the same VM. If you can keep serving traffic then effectively all sites you can put comfortably in your existing instance are "free." You're paying for the instance, use it.
image

Q. You're insane, what kind of sites could provide value and also be packed that tight?

A. There's lots of little sites, like my podcasts for example, that get a few tens of thousands or even hundreds of thousands hits a month. If you're working for a digital agency and putting together simple sites, you can start saving big money after about 6 to 8 sites.

Here's the Azure Pricing Calculator. In my opinion it's silly that it goes past 8 in Shared mode. Anything more than 8 shared sites is a waste of money.

image

You might look at this and thing, 8 for $77? That's real money and too rich for me. I'm going to stick with my $5 host. And you probably should if you can pack 8 sites onto that $5 machine.

However, things get cheap when you move to Standard mode. Once you have 1 standard website VM you can put lots of stuff on that one machine.

image

Again, each web site is all alone, isolated and separately deployable and manageable, but they share your 1 VM. But the value is that you never think about the management of the VM. It's always up to date, they're looking for malware, patching the OS, handling stuff. Web Sites sits above the VM and you use FTP, Git Deploy or MS Deploy to get your site there. You can run ASP.NET, PHP, node.js, Python, hell, Classic ASP if you want to.

You're paying for the compute time, 0.10/hr and you're being billed as it's running. If it runs all month long it's $74.40. I run all my sites inside this VM. It's actually a little large, and I could probably get away with an "Extra Small VM" if they would make one for Web Sites (the team is telling me that this is coming soon). Note that I am charged 0.10/hr even if my sites get no traffic, I am essentially paying for “renting” the CPU from Azure.

Q. When do I scale, and how?

A. I talk to customers a lot and most of the ones doing public sites always overstate their traffic. What they want is the ability to scale IF it becomes popular. You can scale UP (bigger instance) or scale OUT (more instances).

You can set you sites to auto-scale if you get on Hacker News or your startup becomes popular. Azure will add (and remove!) instances to make sure traffic gets handled. It will never go above or below the settings you choose.

image

This is a way to control costs. In this screenshot, I will never go above 3 instances, so my site can fall over if it gets slammed, but I decide how hard it tries to scale. I want to balance costs with availability. I could change this however I want from just 1 small VM to 10 large ones, so that's 1 core to 40, as I like.

Q: Are Azure Websites running all the time, 24/7?

A: If you have a standard VM with a bunch of websites in them, the VM is running all the time and you're paying for that VM. If one of the web sites isn't used for some large number of hours, it will be put to sleep, freeing up resources for other sites on the same VM. If you're worried about the web site not warming up quickly, you can use the build in Monitoring feature to not only ensure they are always up but that they are always warm.

image

Q: I’ve got an MSDN Subscription, what does that get me?

Link your MSDN and Azure accounts and you can get up to $150 a month in Azure credits, so up to two free VMs running all day for a month.

I've done a few posts on "Penny Pinching in the Cloud" that you may enjoy.

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook twitter subscribe
About   Newsletter
Hosting By
Hosted in an Azure App Service
August 09, 2013 1:17
Nuts, maybe marketing should put out more stuff like this. I have looked at Azure in the past and learned more from this post than then reading through all the pages of pricing on the Azure site. Thanks
August 09, 2013 2:04
roapman76 - Thanks! That's a very nice compliment.
August 09, 2013 2:18
FYI -- Your keysleft.com link actually says and points to keyleft.com (singular).
August 09, 2013 2:35
Thanks for the info. But one thing you should point out... the "new" MSDN credits on Azure are for DEVELOPMENT only. You are not allowed to use that for production sites. According to the Gu you can opt in to stay on the old plan which does allow for Production sites.. but, I think you might have only had until Aug 1 to do that.

http://screencast.com/t/bYQIixVt5c

Apparently mine hasn't switched over yet, so I can still push that button and run production sites. But, I don't so I'm not worried.

BOb
August 09, 2013 2:39
Here is the link to the MSDN benefit.. scroll down to "User Rights" to confirm what I said above, you can not use these credits to host production sites, such as a blog, for example.

https://www.windowsazure.com/en-us/offers/MS-AZR-0045P/?currency-locale=en-US

BOb
August 09, 2013 2:41
Thanks for this post. What about if your site uses a database like SQL Server or SQL Server Express. What's the most cost effective solution if you wanted to have a database for each site?

I think what stops many small developers is that on a shared web host we know the performance and quality can't compare, but we are able to get hosting for not just 1, but multiple sites (sometimes unlimited sites) plus databases for each site for less than $10/mo and a lot of times performance is adequate especially if your site isn't heavily visited.

Going from that to $74.40/mo for web sites + maybe $50/mo or more for an sql server VM is hard to move to for the really small developer.
dc
August 09, 2013 2:44
Ha - coincidentally, you left one key out of keyleft.com
August 09, 2013 3:06
Hi Scott, thanks for making this nice and clear.

Unfortunately the pricing all falls apart if you want to use SSL for your sites (particularly IP based). I often work in an agency setting building a lot of small sites, but since they are content managed the administrators logins etc should really be protected.

Is there any hope for those of us that believe in security and privacy but also run a lot of small sites?
August 09, 2013 3:15
Scott - I didn't see you mention it (except by saying that Free mode *doesn't* allow SSL) but you're forced to go up to Standard if you want SSL. At least for now...which is a bummer for me because my traffic is currently no where near a level that needs Standard. I'd like to see SSL capabilities added for Shared mode.

Thanks for the tip about the Monitoring feature ensuring the site is always warm. Up till now have been running a keep-alive routine with a PS script on my desktop.

Finally, BizSpark offers a great option for those that qualify. PilotBob - you *can* use your MSDN benefits for production purposes if your MSDN subscription comes from BizSpark (per Scott Gu). I just hope my app's usage improves before my BizSpark benefits runs out, because I'm hooked on Azure.
Tim
August 09, 2013 3:57
I don't usually bother to leave a comment, but it was great to see a breakdown like this backed with *actual* real-life usage scenarios.
August 09, 2013 4:44
Thanks for this info. For years I've heard people say "Cloud is inexpensive" but for the first time someone took the pain to start with numbers and then speak about advantages/disadvantages.
Sri
August 09, 2013 4:50
Thanks for the post Scott.

On thing that I haven't figured out, and perhaps I haven't looked hard enough is: Do you need to be running multiple VM instances to get respectable uptime?

I remember with plain-old-azure you were supposed to run multiple instances to get good uptime. Is this abstracted away with websites so you only have to run 1 instance, or is it just not that bad in practice?

Am I off track? I hope that made sense.
August 09, 2013 5:56
In what mode do we get assurances that the NSA isn't also receiving a copy of the data? :)
August 09, 2013 5:58
Scott,

Thanks for the post. This is very helpful. Is there anything similar for the database side? It's great that I can run a bunch of sites on a single Standard VM, but if I'm going to get hit with $10/month for ClearDB for each of those sites that needs a database then it kinda feels like we've only solved half of the problem?
August 09, 2013 11:50
Seriously, this is way more useful than any of the official documentation. Great!
August 09, 2013 12:40
Hi,

Good insight, but I think that when running a website on Azure you are also charged for any outgoing traffic - which can have quite an impact on the cost, if you're i.e. streaming video?
August 09, 2013 15:32
Not only is this a great summary (as others have said) but the comments above are also more informative than a lot of other pages I've seen. This post makes me feel much more confident about jumping in and trying it (we currently host on 2k8 VMs which does work out quite pricey itself unless you pack enough sites onto them).

@dc - good question about databases. And what if we need MySQL? There's not many sites I work on these days that don't have some sort of database.

Are there any Azure credits for those who have MSDN via a MAPS subscription?
August 09, 2013 16:05
I have the same questions about databases as some others have asked. We currently are large enough to have our own mini-datacenter with 3 VMs for web servers and 1 large VM running SQL Server Web edition. There are about 75 sites per web VM and they all have their own database, so about 225 databases are on the SQL Server VM.

What's confusing on the Azure site is whether or not a "database" on Azure implies a single database or if it's a single database "instance" with the capability for multiple separate databases within.

We're also growing somewhat rapidly - 100 of those sites are new in the past 14 months - so it seems like expansion would be so much easier in the cloud, but, not knowing how to migrate from what we have now to Azure just makes it difficult to put the business case together.

What's worse is that these are all minor sports websites, most of which are hockey, so there is a clear "in season" and "off season" for our servers. When in-season, we do bump up against hardware limitations occasionally with an average of 150,000 visitors per day; and that goes down to just a trickle (10K / day) during the summer. Seems like it would be the perfect fit for Azure if we can figure out how much the databases would cost.

And on another note - I've never seen from Microsoft any sort of *free* professional migration assistance program. Microsoft seems to assume that moving to Azure is easy and people will take the time to learn how to do it. I just don't have the time though. What we have right now works, and that IS the most important thing. Moving to something better sounds nice and all, but if there's a chance of downtime or errors then in my opinion it's not worth risking. I don't have the time to become an expert on Azure until after we're using it - so if Microsoft wants my monthly money they need to step up to the plate and be there to help at the start.
August 09, 2013 16:17
Hi Scott,

Great post, thanks!

I found myself quite confused on the Calculator page as there is not enough clarity about what different services provide.
What about having website(s) and SQL database(s). Quite a lot of options here: Free Azure website + Azure SQL, VM with website and SQL on the VM, VM Site + Azure SQL, etc...

August 09, 2013 17:14
This post what is called in marketing "educating the customer about the product" , nice marketing post
Sam
August 09, 2013 17:15
Scott,

Thanks so much for writing this post! It all makes sense now and I can make a case for it to my boss. Having a follow up on SQL sizing and pricing would be most excellent.

PS: If marketing comes down on you it won't be for speaking... It will by someone who is made that you did a better job than them.

Thanks Again and keep up the great posts/podcasts - TDL and RAtG.
August 09, 2013 17:17
for ecommerce websites you will need ssl. only standard offers ssl...70+ dollars per month might be too much for a small ecommerce website...any way to get around this problem?
August 09, 2013 17:19
great info,

the only downside as mentioned is of course

"Can I use my Windows Azure MSDN Dev-Test subscription to run production applications?
Windows Azure MSDN Dev-Test subscriptions are specifically for Dev-Test usage only. Production workloads must be run on regular subscriptions."
as found on http://www.windowsazure.com/en-us/pricing/member-offers/msdn-benefits/ (at the bottom of the page)
August 09, 2013 17:32
When you scale out, does that mean it's going to then load balance for each domain you're hosting, or push some domains to one VM, and others to another? That matters because the way you build the app (especially for caching) matters.
August 09, 2013 17:55
Sorry for the double post, but this is the thing I also don't understand. The calculator talks about a Web site VM, but I have to create more than one site in the admin. It's not clear that these are then magically the same VM. That's a huge disconnect that I haven't understood from the beginning.
August 09, 2013 18:36
Great post as always, but this time I have one question.

When should I use Web Site vs Web Role?
August 09, 2013 18:39
This is still really confusing. I have a rather simple PHP+MySQL website that I would have re-done as ASP.NET long ago, but it currently delivers over a terabyte of traffic (MP3 files -- it's a podcast site). This one site alone, if I am doing the calculations right, would cost me $199/month whereas my LAMP hosting provider hosts it -- and 30 or so other domains -- for $10 a month. I want to get my sites over to ASP.NET but I can't afford this much for a non-revenue producing websites! Is bandwidth really that expensive and if so, why are the LAMP hosting providers able to turn a profit at their prices? Why doesn't MSFT offer a "LAMP-killer" option? It's not like y'all are paying for licensing...
August 09, 2013 19:27
Thanks, very useful! That extra small VM is one cheap doggie.
August 09, 2013 19:28
CMike, there is nothing in the LAMP stack that allows for a $10 per terabyte. You are just getting a good deal out of whatever hosting you are using.
In comparison, on Amazon's S3 this 1TB will cost you $95, which is lower but comparable to Azure's VM cost of 1TB traffic of $122.

1TB MP3 traffic for a podcast means about 20,000 plays a month. You sure you can't monetize this?
August 09, 2013 20:29
@CMike : Cloud service is expensive for regular websites ,it is only worth when you replace your physical servers or VPS with these Cloud , but if you want to move your website from shared hosting to Cloud , it not worth and will cost you, unless your website making a lot of money that worth all this paying .
Sam
August 09, 2013 21:48
FYI - typo in the www.keysleft.com URL, missing the S...
August 09, 2013 22:55
Thanks Scott! This is far more informative than the mumbo-jumbo on the Azure site (which almost feels like they're trying to HIDE the real costs).

Question: Does the "Shared-Mode" still have that 240 minutes / day CPU usage limit?

If so,
1) Is that counted in minutes? seconds? (ie, will 1 second usage "count as" 1 minute)...so if we get 240 random single-1-second page hits throughout the day, will our site get blocked until the 24 hr clock runs out?

2)If (any which way) our 240 minutes gets used up, can it auto-scale up to reserved for the rest of the day?

Thanks again for all that you bring to the community Scott!
Cheers!
August 09, 2013 23:23
Great post Scott, very helpful, thank you.
August 09, 2013 23:54
Great post! I was looking for this exact information, Thanks Scott.
August 10, 2013 1:38
Mike - Yes, Shared has that limit, it's by minute. Shared isn't that useful. I'd wait for Extra-Small, myself.

Boris and CMike - Yes, and it gets cheaper the more TBs you send outbound. See the CDN details, it's pretty clear, and competitively priced. http://www.windowsazure.com/en-us/pricing/details/cdn/

CMike - You're getting a great deal, but it won't last, just like unlimited data on phones didn't last. You are getting that pricing, I suspect, because your peers at the same host don't use theirs.

Brad - Yes, when Websites supports Extra-Small it's gonna be sweet.

Luiz - Web Roles are totally stateless and scale differently. Web Sites are "IIS in the cloud." while Web Roles are theoretically more scalable and flexible for other workloads that aren't just serving pages.

JeffPutz - Yes, load balancing is automatic across instances. That's part of the value. You just have more, and it round robins (assuming your code isn't doing something dump like writing state to disk).

JeffPutz - Also, yes, that is confusing. When you make a new websites in the same location (West US) for example, it will jump into your VM unless you say otherwise.

Patrick - Assuming someone notices, yes, that's true.

Kevin - I will ask about SSL and get back to you.

Shaun - Good question. Out of curiosity, have you tried using System Center to upload your VM? http://www.techrepublic.com/blog/the-enterprise-cloud/deploy-an-on-premise-vm-to-windows-azure-with-app-controller/

I'll ask about migration. It definitely sounds like Azure WebSites would give you easier scale than your current VMs.

Shaun - How big are your DBs? If you have the SQL license, you could start by moving VMs to the cloud, then later moving Web Sites.

Brian and Darren - I found that MySQL pricing too much also, so I made an extra-small Windows VM and I host MySQL on it instead. That way there's no connection limits. That runs my Newsletter Software and Database. There's no reason you can't run those things in a VM.

Michael - Yes, inbound is free, outbound costs. If you were going to stream video, though, don't stream it from the Website! Either use Azure Storage or CDN, or Azure Media Services for on-demand streaming: http://www.windowsazure.com/en-us/pricing/details/media-services/

Don M - You'll get 99.9 or more on most all. See the SLA agreement: http://www.windowsazure.com/en-us/support/legal/sla/ Although if you need 5 nines, you'll need multiples, yes.

Tim - Then you'd want an Extra-Small when the come out soon.
August 10, 2013 2:26
Can you set up a VPN server on the virtual machines?

I'm interested in a PPTP server that allows me to watch American instead of Canadian Netflix, would that work on azure? Does any have any suggestions on how to do it?

Thanks!
August 10, 2013 2:33
Is Microsoft moving away from Cloud Services? It's not mentioned once in your post and it's getting mentioned less and less by everybody at Microsoft I'm noticing.
August 10, 2013 3:30
Nice post Mr. Hanselman. I agree with others - much more clarity than the official docs.

However, my question is this - in that very Twitter conversation (or a closely related one that same day) you indicated that your cost for running all you sites in Azure last month was ~$13.00. Rob Conery indicated he had run his Tekpub site, in an actual VM, for $1.26, without any special coupons etc.

Is this due to the site(s) being put to sleep as you describe above? or are we missing something? Unless I misunderstand you above, you are hosting in a "Standard" websites tier, for which (according to the above) you would be paying to "rent" the cpu all month, running or not.

What am I missing?

I love the things Azure can bring to the table, but before I move my site there, I want to make certain I understand and can afford it. All of the above in your post makes complete sense except for where it doesn't reconcile with what you and Rob Conery posted on Twitter.

Thanks. Sorry for the long-winded comment!
August 10, 2013 7:12
Kevin - I think there might be an alternative for SSL for a small e-com site. Brady Gaster had a great post about how to get SSL for Azure Websites before Microsoft started supporting SSL for Websites. The trick was to set up an Azure Cloud Service and add your certificate there and point your domain there. Then, using URL rewrites, your traffic is forwarded to your website (the user doesn't know that, though).

http://www.bradygaster.com/running-ssl-with-windows-azure-web-sites?__r=8cffeabd3a31563

I tried a few months back but couldn't get it to work quite the way I wanted it...but that probably had more to do with my limited understanding than his solution. Take a look. An extra small Cloud Service role is much cheaper at ~$15/mo.
Tim
August 10, 2013 8:48
Mike - I can't speak for Microsoft. I am only used to and familiar with hosting in Web Sites since I do most of my work in IIS and ASP.NET. I can ask around, though.

John - My $13.00 cost was overages and using MSDN original credits, so definitely that wasn't representative of my full bill. It is true that I keep 3 of my VMs shut off (like my newsletter) until I need them. I think also that Rob was wrong and must have been either quoting prorated or using some Trial credits. I suspect his bill is more like $50 to $75. I will call Rob and straighten him out. Thanks for your comment!
August 10, 2013 10:50
ok, so suppose i am having 8 websites on a standard vm, how do i have each running on a seperate domain?
frk
August 10, 2013 11:13
Great post! I got stung with a big bill in the early days of Azure when my trial ended. This put me off ever going near Azure again, but after this post I feel a lot more aware and happy to give it another go. Thanks Scott!
August 10, 2013 11:54
frk - Just to to the Configure section of one website and click "Manage Domains." I did a video on Custom DNS and Azure Websites here: https://www.youtube.com/watch?v=QkKIMyK2ceU
August 10, 2013 11:57
thanks, that's help
frk
August 10, 2013 12:58
@Scott: +inf: great post!

Note it would be cool if the date-stamp on comments would actually be clickable URLs.

For instance your comment stamped "Friday, August 09, 2013 9:38:44 PM UTC" is actually this URL:

http://www.hanselman.com/blog/PennyPinchingInTheCloudWhenDoAzureWebsitesMakeSense.aspx#4ab569c9-3996-4411-93a9-f1df1601daca

That makes referring to comments much easier (I linked only one here because right now it is too hard: http://wiert.me/2013/08/10/must-read-penny-pinching-in-the-cloud-when-do-azure-websites-make-sense-scott-hanselman/)

--jeroen
August 10, 2013 13:07
Scott, how does availability work? I remember reading somewhere you need (at least) 2 instances to guarantee uptime. Does that still/also count for Azure Websites?

Great post though!
August 11, 2013 3:53
Most small websites (<20,000 PV)


What do you mean by PV ?
August 11, 2013 8:47
@Daniel, PV stands for Page Views.
August 11, 2013 9:26
Daniel, I think he means Page Views (PV)
August 12, 2013 20:48
For those asking about SQL Azure, the calculator makes it pretty easy to answer this question. It seems like "mostly" the price is based on DB Size. For example...

1 - 10GB Database is $45.96 per month
2 - 10GB Databases are $91.91 per month

2 - 5GB databases are $51.95 per month

So it seems like there is very little overhead for each additional database. It also seems like the overhead of additional databases is smaller if the databases are bigger.

http://www.windowsazure.com/en-us/pricing/calculator/?scenario=data-management




August 13, 2013 19:43
I use appharbor.com. I think it is Azure priced right.
$10/month for custom domain and SSL, unlimited web files space, free SQL Server add on with up to 20 MB Disk space.
You can buy 10GB of SQL Server space with $10 per month.

Git support.

This is ideal for developing and also until the site gets enough traffic/income to migrate to expensive hosting.
August 15, 2013 18:12
do I lose the ability to locate my site in a region if i go for standard? or was that never an option anyway?
Jim
August 16, 2013 1:03
Jim - No, you can use whatever region you like.
August 17, 2013 16:30
That monitoring stuff looks pretty cool for keeping sites hot, its a real shame you can only get it with standard.
August 19, 2013 18:31
This is exactly what I needed! Thanks, Scott! I think another exclamation is in order!
August 27, 2013 13:11
Spot on with this write-up, I seriously believe this amazing site needs a lot more
attention. I'll probably be returning to read through more, thanks for the info!

Check out my webpage ... search engine marketing (Brook)
August 28, 2013 11:04
Great post, informative and clear in a confusing area. Something I am wondering about and can't find any resources.. if I run a single site in shared mode, pay-as-you-go with an estimated cost of $9.68 per month.. I can't find a spending limit setting, am I somehow at risk of spending much more than that under a DOS or sudden worldwide interest in the site? Thanks.

Andrew
August 29, 2013 12:04
From the looks of the documentation a spending limit is only enabled during the trail version to stop you incurring limits. If it is disabled (and hence you are being charged) you cannot re-enable it:

http://www.windowsazure.com/en-us/pricing/spending-limits/

You can set up alerts to notify you of such things like a sudden increase of traffic etc so whilst you would still incur extra from the attack you would be notified as it happens given you chance to do something about it.

How much more it cost's you is all down to your scale settings.
September 25, 2013 19:18
Hey,

It's a great post! thank you.

I have a backend service for my mobile application's server-side.
i can't use "Azure Mobile Services" because its too basic, and i need my own logic and not just CRUD actions)

so i'm trying to decide if i should keep using my current method, which is a WCF service running on Web Role, that exposes RESTfull api (no use for SOAP at all.. its all simple JSON returned from those methods)

the second option is to use WEB .API with "Azure Web Site". the problem is, it seems like a little over-kill since it also gives me full web site and i don't need a web site at all, just the API part for the mobile.

I would appreciate your opinion.

Thanks alot, Liran!

by the way,
if i have 10 shared web sites, does it mean i can scale my single service (in my case, an web .api based on asp.net web site) 10 times? because i really don't need 10.. i only have 1 service. but scaling it for better performance is probably a good idea.
September 26, 2013 22:31
Liran - You can make ANY custom methods or any custom code in Azure Mobile Services. It's not CRUD and it's not basic. http://msdn.microsoft.com/en-us/library/windowsazure/dn303368.aspx
September 26, 2013 23:10
It's interesting, and good to know.

but right now i'm using .NET, and also using external libraries (NHibernate, PushSharp library, Facebook Library). and its all developed already, so my question still stands.

thanks
September 27, 2013 1:32
Liran - Azure Websites are pretty light weight and cheap on Xtra-Small so I think Web API is still the best idea for what you're doing.
September 27, 2013 2:35
Thank you very much. and what about my "by the way" part? :)
September 27, 2013 5:14
Liran - Take a look at my post on Shared Web Sites vs. Standard. You absolutely will not get better performance on Shared as a dedicated Standard Web Site VM. Setup a SMALL Standard Web Site with *auto scale*. Don't waste money!
September 27, 2013 12:35
Hey,

I have a free pass for the next 8 months, which gives me "10 shared web sites".. so that why i'm using it. so again, my question still stands, but thank you for the warning.
October 24, 2013 12:07
Hey Scott

This is a great article that I keep coming back to!

If I run one website, but 2 instances on a shared instance I get no downtime when deploying.

Can I get this benefit by running 2 instances on the same standard instance?

Cheers
November 03, 2013 7:24
Maybe I am missing something, but, I have signed up for the "Free Trial" that gives you "10 free websites". It worked for 30 days then quit. My sites all say free trial ended. Now I do understand that it is a free trial, but the way they market it is "free for up to 10 sites!" .... but they leave out the for 30 days part.

Is there somewhere I can turn on the non-essential, low man on the totem pole, not guaranteed to be up, free for up to 10 websites subscription?! All of the subscriptions I look at cost a minimum of $500 / mo and require 6/mo or 12/mo commitments.

I miss my git deploy and Azure dashboard :/
November 05, 2013 13:23
Really great :)

I read through this entire thing to help me make sense of what Azure is really all about!

Thanks
November 12, 2013 4:51
An Azure penny pinching discussion is incomplete without a dive into Web Roles. Consider a basic website using SSL that has to work on older browsers. The best pricing with Azure Web Sites is a Small instance, which will run you $75/month plus the IP SSL charge of $39/month, for a total of $114/month. However, if you don't need much CPU/RAM/disk, you can get by with an Extra Small Web Role instance for $15/month.

Web Sites and Web Roles each have their pros and cons (worthy of a blog post in its own right), and the Extra Small instance is, well, extra small, but for a $99/month difference in price, you'll want to know your options.
November 15, 2013 23:43
Great post! Any idea how many MSFT Azure API's there actually are available?
November 16, 2013 13:29
How about little detail of VM crowd in physical machine? As we know that virtualization platforms can actually host unlimited VMs with more Virtual RAM then available physical RAM.

Apart from SLA how do we track that our VM is not starring for resources or CPU time?

Initially as the platform is new and you don't have enough tenents so everything looks promising.

What I mean is I have set availability for 8 VMs but what is guarantee of it meeting actual CPU time.

Let's say you have 16 VMs hosted on one physical machine. Do you dynamically more VM to different physical machine to meet promised share if all VMs demand high CPU usage?
November 17, 2013 9:37
I'm launching a new business site at the end of this month, it will be taking up all of my time, so no other projects to work on. I'm trying to bootstrap my business, so $75/mo for a standard site (I need SSL) is a bit high.

I really want to put my site on Azure, any word on when that XS website instance is coming? I don't know how much it will cost, but something around $20-$30 a month would be reasonable enough for me to move to it.

Thanks for these great penny-pinching articles!

Comments are closed.

Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.