Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do you need 2 instances of Azure websites for SLA like Web Roles?

On cloud services web roles you must create at least 2 instances to get Azure's 99.95% SLA because when they do updates to the servers' OS etc, Azure will need to restart the machines (one at a time). This is well documented and you will be shouted at by the portal when running a one instance web role for doing this.

With Azure websites you don't get such warnings and I cannot find any documentation suggesting 2 instances for the 99.9% SLA. However, I also can't find any documentation saying that you don't need 2 instances for this SLA.

So which is it? Do I need 2 instances for Azure websites' SLA like web roles or is that a thing of the past?

like image 641
BritishDeveloper Avatar asked Oct 27 '14 12:10

BritishDeveloper


People also ask

What is the SLA for Azure VM?

Azure Cosmos DB allows configuring multiple Azure regions as writable endpoints for a Database Account. In this configuration, Cosmos DB offers 99.999% SLA for both read and write availability.

What web app tiers provide no SLA availability?

App Service We guarantee that Apps running in a customer subscription will be available 99.95% of the time. No SLA is provided for Apps under either the Free or Shared tiers.

What is azure uptime?

Currently, Azure AD uptime is guaranteed to be "three nines" (99.9 percent) per month. Microsoft attributes the enhanced SLA to various infrastructure "investments" such as a "cellularized architecture" that isolates failures to a small number of users.


Video Answer


2 Answers

A developer on the Azure Websites team has replied here that

the SLA for any Azure Website on the Basic or Standard tier is 99.95%

Just having one instance of the site is enough

like image 89
mvark Avatar answered Nov 15 '22 22:11

mvark


You can download the Azure Web Sites SLA document here: http://azure.microsoft.com/en-us/support/legal/sla/

It does not state that you need 2 instances to get the 99.9% SLA but clearly state that the Free and Shared Web Site Tiers are not covered by this SLA.

like image 33
CSharpRocks Avatar answered Nov 15 '22 20:11

CSharpRocks