【发布时间】:2020-06-15 20:13:18
【问题描述】:
我有一个长时间运行的应用程序,其任务是每 2/3 秒插入一次数据。大多数时候它工作正常。但有时我会遇到超时异常。每次插入大约 50 条记录时,我都会进行检查。我检查了超过 2000 行的更多负载。它完美地工作。一天只有几次它抛出超时异常。
来源:Microsoft.WindowsAzure.Storage 目标站点:T EndExecuteAsyncT StackTrace:在 Microsoft.WindowsAzure.Storage.Core.Executor.Executor.EndExecuteAsync[T](IAsyncResult 结果) 在 Microsoft.WindowsAzure.Storage.Core.Util.AsyncExtensions.c__DisplayClass2`1.b__0(IAsyncResult ar) --- 从先前抛出异常的位置结束堆栈跟踪 --- 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(任务任务) 在 System.Runtime.CompilerServices.TaskAwaiter.GetResult() 在 smi.Server.Shared.VehicleHistoryLibrary.ATVehicleHistoryContext.d__4.MoveNext()
这是我的代码
ThreadPool.SetMinThreads(1024, 256);
ServicePointManager.DefaultConnectionLimit = 256;
ServicePointManager.UseNagleAlgorithm = false;
ServicePointManager.Expect100Continue = false;
client.DefaultRequestOptions = new TableRequestOptions
{
MaximumExecutionTime = TimeSpan.FromSeconds(30), //Timeout requests after 30 seconds
RetryPolicy = new ExponentialRetry(TimeSpan.FromSeconds(3), 4),
LocationMode = LocationMode.PrimaryThenSecondary
};
var tableEntityGroups = histories.Select(h => new TrackHistoryTableEntity(h)).GroupBy(e => e.PartitionKey).ToDictionary(g => g.Key, g => g.ToList());
List<Task> tasks = new List<Task>();
foreach (var kvp in tableEntityGroups)
{
//Merge Track history records with the same FixTaken second into one, taking the average
var mergedHistories = kvp.Value.GroupBy(v => v.RowKey).Select(g => new TrackHistoryTableEntity()
{
PartitionKey = g.First().PartitionKey,
RowKey = g.First().RowKey,
A = g.Select(v => v.A).Average(),
N = g.Select(v => v.N).Average(),
V = g.Select(v => v.V).Average(),
B = g.Select(v => v.B).Average(),
D = g.Select(v => v.D).Sum()
});
TableBatchOperation batchOperation = new TableBatchOperation();
foreach (var v in mergedHistories)
{
batchOperation.Add(TableOperation.InsertOrReplace(v));
if (batchOperation.Count >= 100)
{
tasks.Add(TrackHistoryTable.ExecuteBatchAsync(batchOperation));
batchOperation = new TableBatchOperation();
}
}
if (batchOperation.Count > 0)
{
tasks.Add(TrackHistoryTable.ExecuteBatchAsync(batchOperation));
}
var splitKey = kvp.Value[0].PartitionKey.Split('_');
tasks.Add(TrackHistoryTracksTable.ExecuteAsync(TableOperation.InsertOrReplace(new TableEntity(splitKey[0], Int32.Parse(splitKey[1]).ToString()))));
if (trackPartitionUpdates)
tasks.Add(TrackHistoryPartitionUpdatesTable.ExecuteAsync(TableOperation.InsertOrReplace(new TableEntity(TrackHistoryTableEntity.GetHourTimestamp(DateTime.UtcNow).ToString(), kvp.Value[0].PartitionKey))));
}
await Task.WhenAll(tasks.ToArray());
【问题讨论】:
标签: c# azure azure-table-storage