Azure cloud service becomes unresponsive when instances are removed?

六眼飞鱼酱① 提交于 2019-12-10 19:24:10

问题


My azure cloud service, when it scales down say from 3 to 2 instances, my site becomes unresponsive for a few minutes?

I was under the impression, and I may be wrong that my existing instances would be left intact (except those that are being removed) and my site would continue to function as normal?

Is this normal behavior?


回答1:


  • This is expected behavior when you scale down from 2 instances to 1 as you are no longer in the SLA-backed world.

  • This is also expected behavior if the RoleEnvironmentChanging event of your WebRole sets e.Cancel to "true" which forces instance-reboots during a scaling event.

Otherwise, scale-down actions should not cause interruptions to your site



来源:https://stackoverflow.com/questions/16907000/azure-cloud-service-becomes-unresponsive-when-instances-are-removed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!