how to run web app on multiple instances

Huhn, Alexander 105 Reputation points
2023-03-10T16:37:21.0666667+00:00

I have a web app, and am under the impression that I need to deploy it to multiple instances.

What precisely does this entail? Is this scaling out?

User's image

If not, how do I proceed?

TIA

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,935 questions
0 comments No comments
{count} votes

Accepted answer
  1. TP 124.9K Reputation points Volunteer Moderator
    2023-03-10T17:01:46.07+00:00

    Hi,

    If the load/needs of your app requires it, you can have it running on multiple instances (Scale out). The incoming requests will be balanced across all running instances.

    For Standard tier plan and higher you can configure autoscale, which allows the number of instances to scale out and in automatically. For example, with autoscale you could configure it to increase the number of running instances by 1 if CPU is greater than 70% for 10 minutes, and decrease the number of instances by 1 if CPU is less than 50% for 15 minutes.

    For Basic tier plans only manual scale is supported, which is what you see in your screen shot.

    Get started with autoscale in Azure

    https://learn.microsoft.com/en-us/azure/azure-monitor/autoscale/autoscale-get-started

    If the above is helpful please click Accept Answer.

    Thanks.

    -TP

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.