Windows Azure作為微軟基於雲計算的操作系統,更是微軟“軟件和服務”技術的名稱,在它的實際操作過程中會遭遇那些問題呢?對於那些技術上的種種難題又該如何解決呢?今天小編就請教了專業人士,並為大家總結整理了windowsazure在實際操作過程中常見問題及那些的解決方案,對此有興趣的同學們,可以來學習下哦.
【1】. Some Tips for table service.
【1.1】 修改最大連接數,如果需要。
Config file:Config file:
<system.net>
<connectionManagement>
<add address = "*" maxconnection = "24" />
</connectionManagement>
</system.net>
代碼:
ServicePointManager.DefaultConnectionLimit = 24;
【1.2】 Turn off 100-continue
Config file:
<settings>
<servicePointManager expect100Continue="false" />
</settings>
</system.net>
代碼:
ServicePointManager.Expect100Continue = false;
【1.3】 關閉Context跟蹤,如果用不上的環境(比如都是查詢)
context.MergeOption = MergeOption.NoTracking; 上一頁12下一頁共2頁
【1.4】 合理利用PartitionKey & RowKey
具體參見: More about “PartitionKey”&"RowKey” in windows azure table storage
<2> using customer httphandler in windows azure webrole, 在webrole中使用自定義HttpHandler.
由於部署以後的webrole實際運行在IIS7上面,如果您配置的是:
<system.web>
<httpHandlers>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<validation validateIntegratedModeConfiguration="false"></validation>
<handlers>
<add path="*.do" name="KeywordsHandler" verb="GET" type="KeywordsWebRole.KeywordsHandler,KeywordsWebRole" resourceType="Unspecified" allowPathInfo="true"></add>
</handlers>
</system.webServer>
CloudStorageAccount account = CloudStorageAccount.FromConfigurationSetting("DataConnectionString");
出現以下錯誤:
Exception: SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used.
解決方案:
在 public override bool OnStart()中加入以下代碼:
CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));
RoleEnvironment.Changed += (anotherSender, arg) =>
{
if (arg.Changes.OfType
.Any((change) => (change.ConfigurationSettingName == configName)))
{
if (!configSetter(RoleEnvironment.GetConfigurationSettingValue(configName)))
{
RoleEnvironment.RequestRecycle();
}
}
};
});
WindowsAzure平台是微軟自主研發的一個雲服務平台,是很專業性的產品,所以平時生活中我們也很少會遇到這種技術層面的東西,可以隨便看看,當做多認識一個新鮮的事物.