How can I make sure a new autoscaled Azure App Ser

2019-04-08 06:25发布

问题:

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?

回答1:

How can I do this? IS it possible to add a timeout? Or is it done automatically somehow?

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.


"Azure will automatically warm up the new instance's application" - the links you provided do not say this - can you provide other references? I essentially don't want the instance added to a load balancer until a specific URL is accessible with 200 OK or after a hard timeout of 2 minutes.

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:

<tracing>  
  <traceFailedRequests>  
    <clear/>  
    <add path="*">  
      <traceAreas>  
      <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,Rewrite,iisnode" verbosity="Verbose" />  
      </traceAreas>  
      <failureDefinitions statusCodes="200-600" />  
    </add>  
  </traceFailedRequests>  
</tracing> 

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.



回答2:

You want to use Application Initialization in the web.config file for your app.

you'll need to add something like this:

<system.webServer>  
  <applicationInitialization >  
    <add initializationPage="/page-you-want-to-warm-up.php" hostName="your-app.azurewebsites.net"/> 
  </applicationInitialization>  
<system.webServer> 

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.