Scale Azure WebApp using .NET SDK

痴心易碎 提交于 2019-12-08 08:56:13

问题


Description of the Microsoft.WindowsAzure.Management.WebSites NuGet package says that it

"Provides management capabilities for Microsoft Azure Web Sites. Deploy, configure, debug, and scale your websites"

What class and methods should I use to perform a scaling operation?

My previous question on this topic was marked as duplicated, but I don't agree, here is an explanation: Scale Azure web app with Azure Management Libraries for .NET


回答1:


Try this PSEUDO code. You'll need to transform config from Response to Update model.

            var config = client.WebSites.GetConfiguration(webspace, website);
            config.NumberOfWorkers = targetScaleSize;
            var result = client.WebSites.UpdateConfiguration(webspace, website, config);


来源:https://stackoverflow.com/questions/31520370/scale-azure-webapp-using-net-sdk

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