我想根据天蓝色队列的长度自动调整我的azure worker角色。根据我所见的所有documentation,使用queueLength操作数应该非常简单。
我已经实现了自动缩放器,将其上传到我的服务并在我的队列中添加了一堆元素,但实例数量没有增加。
最好的排查方法是什么?我已远程桌面到该角色,事件日志中没有任何内容。我可以查看自动缩放事件/错误的日志吗?
编辑: 当我在开发环境中运行应用程序时,我看到autscaler已成功加载ServiceInfo.xml。有一个队列条目和一个角色条目。但是,规则似乎没有从rules.xml文件中加载。
更多编辑: 当我从rules.xml文件中删除了reactiverules和operands节点时,约束规则成功加载。所以问题出在其中一个节点上。
我的serviceinfo xml文件:
<?xml version="1.0" encoding="utf-8"?>
<serviceModel xmlns="http://schemas.microsoft.com/practices/2011/entlib/autoscaling/serviceModel">
<subscriptions>
<subscription name="MySubscription" subscriptionId="blah" certificateThumbprint="blah" certificateStoreName="My" certificateStoreLocation="CurrentUser">
<storageAccounts>
<storageAccount alias="targetstorage" connectionString="DefaultEndpointsProtocol=https;AccountName=blah; AccountKey="blah">
<queues>
<queue alias="auditqueue" queueName="auditqueue"/>
</queues>
</storageAccount>
</storageAccounts>
<services>
<service dnsPrefix="blah" slot="Production" scalingMode="Scale">
<roles>
<role alias="ScalingWebRole" roleName="ScalingWebRole" wadStorageAccountName="targetstorage" />
</roles>
</service>
</services>
</subscription>
</subscriptions>
</serviceModel>
我的规则xml文件:
<constraintRules>
<rule name="Default" enabled="true" rank="1">
<actions>
<range target="ScalingWebRole" min="1" max="10" />
</actions>
</rule>
</constraintRules>
<reactiveRules>
<rule name="Scale up when queue is long" enabled="true">
<actions>
<scale target="ScalingWebRole" by="1" />
</actions>
<when>
<greaterOrEqual operand="QueueLength_Avg" than="5" />
</when>
</rule>
<rule name="Scale down when queue is short" enabled="true">
<actions>
<scale target="ScalingWebRole" by="-1" />
</actions>
<when>
<less operand="QueueLength_Avg" than="5" />
</when>
</rule>
</reactiveRules>
<operands>
<queueLength alias="QueueLength_Avg" aggregate="Average" queue="auditqueue" timespan="00:01:00" />
</operands>
</rules>
答案 0 :(得分:4)
Wasabi发布了大量诊断信息,但您必须启用它。在托管自动缩放器的角色中,更新app.config以包含以下内容:
<system.diagnostics>
<sources>
<source name="Autoscaling General" switchValue="All">
<listeners>
<add name="AzureDiag" />
</listeners>
</source>
<source name="Autoscaling Updates" switchValue="All">
<listeners>
<add name="AzureDiag" />
</listeners>
</source>
</sources>
<sharedListeners>
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="AzureDiag"/>
</sharedListeners>
<trace>
<listeners>
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="AzureDiagnostics">
<filter type="" />
</add>
</listeners>
</trace>
</system.diagnostics>
然后,如果您的角色配置为将日志条目上载到WAD表(Windows Azure诊断表),您将在那里看到条目。
有关Wasabi生成的日志条目的更多信息here。
答案 1 :(得分:1)
在诊断程序提供的帮助下(感谢@Julian Dominguez),很明显第一次自动调节模块尝试命中服务(检查队列长度)时,它失败了。这是因为系统在CurrentUser商店而不是LocalMachine商店中寻找证书。
一旦我在配置中更改了该设置,它就开始工作了。