【发布时间】:2020-08-06 07:11:45
【问题描述】:
我正在删除批量项目并在我的本地计算机上收到以下错误。我正在使用 CosmosDB SDK 3.0。
尝试初始化 CosmosBb 时发生错误。一个或多个错误 发生了。 (响应状态码不表示成功: 服务不可用(503);子状态:0;活动编号: befe13e5-172f-4930-953f-e24bf9b0a14a;原因:(服务目前 不可用。 ActivityId:befe13e5-172f-4930-953f-e24bf9b0a14a, 请求开始时间:2020-08-06T07:04:58.1807989Z,请求结束时间: 2020-08-06T07:05:28.2986219Z,尝试的区域数:1 响应时间:2020-08-06T07:04:59.1993537Z,存储结果: 存储物理地址: rntbd://127.0.0.1:10253/apps/DocDbApp/services/DocDbServer18/partitions/a4cb495e-38c8-11e6-8106-8cdcd42c33be/replicas/1p/, LSN:-1,GlobalCommittedLsn:-1,PartitionKeyRangeId:,IsValid: 假,StatusCode:410,SubStatusCode:0,RequestCharge:0,ItemLSN: -1,SessionToken:,UsingLocalLSN:True,TransportException:发生客户端传输错误:无法连接到远程端点。 (时间:2020-08-06T07:04:59.1993537Z,活动ID: befe13e5-172f-4930-953f-e24bf9b0a14a,错误代码:ConnectFailed [0x0005],基本错误:套接字错误
这是我的删除方法。
private async Task DeleteAllExistingSubscriptions(string userUUId)
{
var subscriptions = await _repository
.GetItemsAsync(x => x.DistributionUserIds.Contains(userUUId), o => o.PayerNumber);
if (subscriptions.Any())
{
List<Task> bulkOperations = new List<Task>();
foreach (var subscription in subscriptions)
{
bulkOperations.Add(_repository
.DeleteItemAsync(subscription.Id.ToString(), subscription.PayerNumber));
}
await Task.WhenAll(bulkOperations);
}
}
Cosmos 客户端:
private static void RegisterCosmosClient(IServiceCollection serviceCollection, IConfiguration configuration)
{
string cosmosDbEndpoint = configuration["CosmoDbEndpoint"];
Ensure.ConditionIsMet(cosmosDbEndpoint.IsNotNullOrEmpty(),
() => new InvalidOperationException("Unable to locate configured CosmosDB endpoint"));
var cosmosDbAuthKey = configuration["CosmoDbAuthkey"];
Ensure.ConditionIsMet(cosmosDbAuthKey.IsNotNullOrEmpty(),
() => new InvalidOperationException("Unable to locate configured CosmosDB auth key"));
serviceCollection.AddSingleton(s => new CosmosClient(cosmosDbEndpoint, cosmosDbAuthKey,
new CosmosClientOptions { AllowBulkExecution = true }));
}
【问题讨论】:
-
我的猜测是很多绑定同时发生。我假设 _repository 有一个共享连接......每个连接的最大 sim 操作是多少。例如,使用 EF 到 sql 你不能在一个 DbInstance 上执行多个事务......所以也许每个任务都需要它自己的?但这似乎也不对。错误消息也没那么有用。
-
尝试在任何给定时间将数量限制为最多 5 个
标签: c# azure-cosmosdb