我已经实现了以下代码,用于在写入 Azure 数据库时使用指数退避处理 INSERT/UPDATE 重试逻辑。
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 的生产环境中会发生什么样的瞬态错误,所以我现在正在尝试尽可能多地进行缓解。