You host a web application on an Azure App Service Web App that currently runs on the Free (F1) App Service plan. You need to configure the web app to automatically scale out when the CPU utilization exceeds . In which order should you perform the configuration steps?
- 1Upgrade the App Service plan to the Standard (S1) pricing tier.
- 2Enable Custom autoscale in the Scale out (App Service plan) settings.
- 3Add a scale-out rule that increases the instance count when the CPU percentage exceeds .
Answer
First, upgrade the App Service plan to the Standard (S1) pricing tier. Second, enable Custom autoscale in the Scale out settings of the App Service plan. Third, add a scale-out rule that increases the instance count when the CPU percentage exceeds .
The correct order requires upgrading the App Service plan to a tier that supports autoscale (Standard S1) before configuring the settings and adding the CPU-based scaling rule.
Step-by-Step Solution
Key Concept
Scaling Azure App Service Web Apps requires a compatible pricing tier (Standard or higher) to support Custom autoscale rules.