Does an Azure Web App care if its instances are healthy/unhealthy?

后端 未结 1 1227
天命终不由人
天命终不由人 2021-01-25 16:54

If I deploy a web app (formerly known as an Azure WebSite) to an App Hosting Plan in Azure with a couple of instances (scale = 2) will the load balancer in front of the inst

相关标签:
1条回答
  • 2021-01-25 17:31

    Yes, Azure Web Apps monitors the health of the workers by making internal requests to it and verifying that they're healthy.

    However, we don't check status codes that the web app returns to user requests (like 500, etc) since that could easily be an app specific issue rather than a problem with the machine.

    So the answer you're looking for is: We continuously test whether or not the instances (VMs) are healthy and take them down if they're not. However, those tests do not rely on error codes the customer's site returns

    0 讨论(0)
提交回复
热议问题