With autoscaling turned on on an app service, Azure will add instances as needed based on set rules. I always start from a minimum of 2 instances. I'd like to make sure that traffic is not directed to the new app service instance until the application code has fully initialized. How can I do this? IS it possible to add a timeout? Or is it done automatically somehow?
相关问题
- Generic Generics in Managed C++
- running headless chrome in an microsoft azure web
- running headless chrome in an microsoft azure web
- Docker task in Azure devops won't accept "$(pw
- How to Debug/Register a Permanent WMI Event Which
You want to use Application Initialization in the web.config file for your app.
you'll need to add something like this:
Every time your application starts, this can be because of a new worker coming online (horizontal scaling) or even just a cold start caused by a new deployment, config change etc... the ApplicationInitialization will be executed to warm up the site before accepting requests on that worker.
You can read more about this here: http://ruslany.net/2015/09/how-to-warm-up-azure-web-app-during-deployment-slots-swap/
Even though that post is talking about using this for warming up a site when doing a swap operation it also applies to cold starts, and scale outs.
If you use horizontal scaling, also called scaling out and in, azure will keep your application continues running without interruption as new resources are provisioned.
Azure will automatically warm up the new instance's application and add a Load Balance to distribute the requests between them automatically. You don't need to configure the load balance separately by yourself.
More details about how azure auto scale work, you could refer to this article and this article.
After the web app scale out to the 2 instance, if the new request are send to the default instance web site , azure will warm up the new instance's web app.
You could write a test as below:
Add below config codes in web.config's webserver tag to trace all the request:
Then if your site scale out to 2 instance, after you access the web app. Load balance will not redirect the request to the second instance since the instance's process doesn't start. Azure will auto warm up the second instance's web app.
You could find the log as below image shows:
The log result:
fr00030.xml(you could find the process is 5860 old instance):
fr00031.xml(you could find the process is 8164 new instance and takes 4015 msec)
Besides, as Byron Tardif says, if you want to enable custom warm up(warm up all the pages), you could use Application Initialization Module.
It will also be called before the new request access your second web app instance.