0

我有一个包含 Bing Translate API 的 MVC3 Web 应用程序。在模拟器上一切正常,但是当我将它部署到 Windows Azure 时,我一次又一次地遇到这个问题(我重试了两次以上):

Instance 0 of role Website is busy
Instance 0 of role Website is cycling

它停止骑自行车很长时间。在门户中,我看到了这条消息:

Waiting for role to start... System is initializing

我已经选择了“ Add deployable assemblies”,并检查了所有引用是否为真Copy Local = true 我还检查了我的帐户存储的连接字符串,我将我的项目设置为通过帐户存储在云上工作。

这里是我的必应翻译 API 的 web.config

<system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_LanguageService" closeTimeout="00:25:00"
          openTimeout="00:25:00" receiveTimeout="00:25:00" sendTimeout="00:25:00"
          allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
          maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
          messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
          useDefaultWebProxy="true">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None"
              realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://api.microsofttranslator.com/V2/soap.svc"
        binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_LanguageService"
        contract="BingTranslator.LanguageService" name="BasicHttpBinding_LanguageService" />
    </client>
  </system.serviceModel>

我已经搜索了很长时间,但没有什么对我有用。请给我你的帮助。此致

4

1 回答 1

0

我可以告诉您如何将这些错误转换为一些信息:

案例一:您的状态在 Web 角色中循环:

  1. Web角色开始
  2. Web角色忙
  3. Web角色单车
  4. Web角色未知状态
  5. Web角色重启

这可能是一个特定于角色的问题,您最好的办法是对您的实例进行 RDP 并查找几件事,即潜在异常的 Azure 诊断日志、事件日志、Azure BootStrapper 日志、IIS 配置器日志等。这将帮助您找到问题比任何其他方法都快,除非您可以从 Azure 存储中获取包含有关潜在问题的所有详细信息的 Azure 诊断日志。

案例二:您的状态在 Full Machine 中循环:

  1. 开始...
  2. 正在初始化...
  3. Web角色开始
  4. Web角色忙
  5. Web角色单车
  6. Web角色重启

这可能是 VM 本身正在循环的特定于机器的问题,这是联系 Windows Azure 支持团队为您调查的好人选。

于 2012-05-30T18:42:09.010 回答