azure是否会阻止角色实例同时被回收?

时间:2015-02-23 13:28:14

标签: asp.net-mvc iis azure azure-web-roles azure-cloud-services

我将一个Web角色部署到两个实例,应用程序池回收超时设置为默认值29小时,应用程序池空闲超时设置为零。我想保持这个应用程序池循环时间,以确保我的应用程序随着时间的推移保持健康。但是,我不希望我的两个实例(意外地)同时回收,以确保我的应用程序仍然响应用户。

azure是否会注意多个实例的应用程序池不会同时被回收?或者:我怎样才能防止这种情况发生?

1 个答案:

答案 0 :(得分:1)

Azure不监视w3wp或您的应用程序池,也不协调不同实例之间的循环时间。为了防止应用程序池一次在多个实例之间进行回收,您应该修改每个实例的时间,例如< 29小时+ IN_#* 1小时>这样IN_0将下注设定为29小时,IN_1设定为30,IN_2设定为31等等。

我的一位同事提供了这段代码:

using System;
using System.Threading.Tasks;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.ServiceRuntime;
using Microsoft.Web.Administration;

namespace RoleEntry
{
    public class Role : RoleEntryPoint
    {
        public override bool OnStart()
        {
            // For information on handling configuration changes
            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.
            int instanceScheduleTime = 0;

            int.TryParse(RoleEnvironment.CurrentRoleInstance.Id.Substring(RoleEnvironment.CurrentRoleInstance.Id.LastIndexOf("_") + 1),out instanceScheduleTime);

            string roleId = string.Format("{0:D2}",(instanceScheduleTime % 24));
            TimeSpan scheduledTime = TimeSpan.Parse(roleId + ":00:00");

            using (ServerManager serverManager = new ServerManager())
            {
                 Configuration config = serverManager.GetApplicationHostConfiguration();

                ConfigurationSection applicationPoolsSection = config.GetSection("system.applicationHost/applicationPools");
                ConfigurationElement applicationPoolDefaultsElement = applicationPoolsSection.GetChildElement("applicationPoolDefaults");
                ConfigurationElement recyclingElement = applicationPoolDefaultsElement.GetChildElement("recycling");
                ConfigurationElement periodicRestartElement = recyclingElement.GetChildElement("periodicRestart");
                ConfigurationElementCollection scheduleCollection = periodicRestartElement.GetCollection("schedule");     

                bool alreadyScheduled = false;
                foreach (ConfigurationElement innerSchedule in scheduleCollection)
                {
                    if ((TimeSpan)innerSchedule["value"] == scheduledTime)
                        alreadyScheduled = true;
                }

                if (!alreadyScheduled)
                {
                    ConfigurationElement addElement1 = scheduleCollection.CreateElement("add");
                    addElement1["value"] = scheduledTime;
                    scheduleCollection.Add(addElement1);
                    serverManager.CommitChanges();
                }
            }

           return base.OnStart();
        }
    }
}