我已經實現了以下代碼,用於在寫入Azure數據庫時處理具有指數退避的INSERT/UPDATE重試邏輯。SQL Azure數據庫重試邏輯
static SqlConnection TryOpen(this SqlConnection connection)
{
int attempts = 0;
while (attempts < 5)
{
try
{
if (attempts > 0)
System.Threading.Thread.Sleep(((int)Math.Pow(3, attempts)) * 1000);
connection.Open();
return connection;
}
catch { }
attempts++;
}
throw new Exception("Unable to obtain a connection to SQL Server or SQL Azure.");
}
但是我應該考慮對我的數據庫讀取應用重試邏輯嗎?或者SqlCommand.CommandTimeout()方法是否足夠?我大部分的讀是使用下面的代碼提起:
Dim myDateAdapter As New SqlDataAdapter(mySqlCommand)
Dim ds As New DataSet
myDateAdapter.Fill(ds, "dtName")
很難知道會發生在生產環境中使用Azure的,所以我想現在要做的儘可能多的緩解儘可能什麼樣的瞬態錯誤的。
我正在調查這個。 TFH塊是否會提供有關連接丟失原因的詳細信息? – QFDev 2013-03-10 11:33:27