Reputation: 4297
In a Azure App Service Plan, one can have several slots in addition to the production one.
Do they share resources?
For example, do they each share the same CPU resource or have their own?
In other words, can one slot impact another if it consumes too much (including the production slot)?
Where is this officially documented?
Upvotes: 4
Views: 3367
Reputation: 10930
As per the official docs,
In App Service, an app runs in an App Service plan. An App Service plan defines a set of compute resources for a web app to run. These compute resources are analogous to the server farm in conventional web hosting.
When you create an App Service plan in a certain region (for example, West Europe), a set of compute resources is created for that plan in that region. Whatever apps you put into this App Service plan run on these compute resources as defined by your App Service plan
For answering your question which is mostly depends on the pricing tier which you have chosen
For the slot settings as well, it will share all the resources from the App Service Plan
Upvotes: 1
Reputation: 7686
Yes, all deployment slots share resources within the App Service Plan.
Upvotes: 5