我已实现以下代码,用于在写入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的生产环境中会发生哪种暂时性错误,因此我现在尝试尽最大可能的缓解措施。

最佳答案

我认为重试通常将成为Windows Azure SQL数据库操作的一部分。

您没有实现自定义解决方案,而是查看了Microsoft模式和实践(Microsoft Patterns and Practices)专门针对SQL数据库发布的transient fault handling application block吗?

09-25 17:30
查看更多