Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure: Pricing of deployment slots for an Azure App Service

Azure: Pricing of deployment slots for an Azure App Service.

Using an S1 App Service Plan, my web site has up to 5 slots for web app staging. How are those slots charged? Are they billed only if used? Included in the S1 fee? or something else.

like image 258
Michael Schulz Avatar asked Feb 19 '16 18:02

Michael Schulz


People also ask

How many deployment slots are available in app Services Azure?

To scale your app to a different tier, make sure that the target tier supports the number of slots your app already uses. For example, if your app has more than five slots, you can't scale it down to the Standard tier, because the Standard tier supports only five deployment slots.

Do deployment slots cost?

Using the swap feature gives you zero-downtime deployments. You can test the new version of your app using the testing in production feature. Deployment slots are great to verify a new version of an app before it goes live. Deployment slots are free!

How many slots are in standard App Service plan?

Each App Service plan tier supports a different number of deployment slots. Azure App Service Plan Premium (v2) supports = 20 and standard supports = 5 deployment slots. Based on your requirement you can put all your apps in one App Service plan and have multiple deployment slots.

What is the name of the default Azure App Service deployment slot?

Therefore, this is one of the awesome features of Azure app services. Default app instance is always mapped to the production slot.


2 Answers

Michael, it part of the app service plan itself. You will see for example that for Azure App Services that standard and premium instances include staging slots. Standard has 5 and premium has 20. They are not priced separate from the plan.

https://azure.microsoft.com/en-us/pricing/details/app-service/plans/

like image 81
Martin Avatar answered Sep 22 '22 15:09

Martin


The staging slots are included as part of your App Service tier. A used slot does not cause extra charges as far as the App Service pricing goes. But since they are part of a shared resource, usage on a staging slot can effect the overall performance of the VM. However, a staged site may incur other costs on Azure. If the running of that slot consumes blob data storage, send queue messages, etc. then those costs will still have to be paid as part of the overall application framework.

like image 25
Bryan Lewis Avatar answered Sep 23 '22 15:09

Bryan Lewis