我的托管服务中有一个辅助角色。 工作人员每天都会发送电子邮件。 但在托管服务中,有2个环境,分段和生产。 所以我的工作者角色每天发送2次电子邮件。 我想知道如何检测工人是否处于停滞或生产状态。 提前谢谢。
答案 0 :(得分:1)
根据我的问题here,您会发现没有快速方法。另外,除非你真的知道自己在做什么,否则我强烈建议你不要这样做。
但是,如果你愿意,你可以使用一个非常好的库(Azure Service Management via C#),虽然我们确实有一些trouble with WCF using it.
以下是有关如何执行此操作的快速示例(请注意,您需要将管理证书作为代码中的资源并将其部署到Azure):
private static bool IsStaging()
{
try
{
if (!CloudEnvironment.IsAvailable)
return false;
const string certName = "AzureManagement.pfx";
const string password = "Pa$$w0rd";
// load certificate
var manifestResourceStream = typeof(ProjectContext).Assembly.GetManifestResourceStream(certName);
if (manifestResourceStream == null)
{
// should we panic?
return true;
}
var bytes = new byte[manifestResourceStream.Length];
manifestResourceStream.Read(bytes, 0, bytes.Length);
var cert = new X509Certificate2(bytes, password);
var serviceManagementChannel = Microsoft.Toolkit.WindowsAzure.ServiceManagement.ServiceManagementHelper.
CreateServiceManagementChannel("WindowsAzureServiceManagement", cert);
using (new OperationContextScope((IContextChannel)serviceManagementChannel))
{
var hostedServices =
serviceManagementChannel.ListHostedServices(WellKnownConfiguration.General.SubscriptionId);
// because we don't know the name of the hosted service, we'll do something really wasteful
// and iterate
foreach (var hostedService in hostedServices)
{
var ad =
serviceManagementChannel.GetHostedServiceWithDetails(
WellKnownConfiguration.General.SubscriptionId,
hostedService.ServiceName, true);
var deployment =
ad.Deployments.Where(
x => x.PrivateID == Zebra.Framework.Azure.CloudEnvironment.CurrentRoleInstanceId).
FirstOrDefault
();
if (deployment != null)
{
return deployment.DeploymentSlot.ToLower().Equals("staging");
}
}
}
return false;
}
catch (Exception e)
{
// if something went wrong, let's not panic
TraceManager.AzureFrameworkTraceSource.TraceData(System.Diagnostics.TraceEventType.Error, "Exception", e);
return false;
}
}
答案 1 :(得分:0)
如果您正在使用SQL Server(Azure中托管的Azure SQL或SQL Server),则可以通过仅允许Production实例的公共IP访问数据库服务器来停止Staging worker角色的工作。 / p>