插入文档时响应状态码并不表示成功

问题描述 投票:0回答:4

我的容器上有以下分区 ID: /船只ID

我正在尝试添加此对象的集合:

public class CoachVessel
{
    [JsonProperty("id")]
    public string vesselId { get; set; }

    [JsonProperty("imo")]
    public long Imo { get; set; }

    [JsonProperty("name")]
    public string Name { get; set; }
}

这是我批量插入文档的代码:

 CosmosClientOptions options = new CosmosClientOptions() { AllowBulkExecution = true };
 CosmosClient cosmosclient = new CosmosClient(connStr, options);
 Container container = cosmosclient.GetContainer("CoachAPI", "Vessels");
    
 List<Task> concurrentTasks = new List<Task>();
 foreach (var vessel in vessels.Take(1))
 {
     concurrentTasks.Add(container.CreateItemAsync(vessel, new PartitionKey(vessel.vesselId)));
 }        
 await Task.WhenAll(concurrentTasks);

我收到以下错误,但没有提供太多信息?

Microsoft.Azure.Cosmos.CosmosException:'响应状态代码不 表示成功:BadRequest(400);子状态:1001;活动 ID: ; 原因:();'

有什么线索可以说明造成这种情况的原因吗?这是我的设置:

我在删除文档时遇到同样的问题:

CosmosClientOptions options = new CosmosClientOptions() { AllowBulkExecution = true,  MaxRetryAttemptsOnRateLimitedRequests=1000};
CosmosClient cosmosclient = new CosmosClient(connStr, options);
Container container = cosmosclient.GetContainer("CoachAPI", "Vessels");


var allItemsQuery = container.GetItemQueryIterator<string>("SELECT * FROM c.id");

List<Task> concurrentDeleteTasks = new List<Task>();

while (allItemsQuery.HasMoreResults)
{
    foreach (var item in await allItemsQuery.ReadNextAsync())
    {
        concurrentDeleteTasks.Add(container.DeleteItemAsync<string>(item, new PartitionKey("id")));
    }
}
            
await Task.WhenAll(concurrentDeleteTasks.Take(3));

抛出以下错误: '响应状态码不表示成功:NotFound(404);子状态:0;

azure-cosmosdb azure-cosmosdb-sqlapi
4个回答
4
投票

分区键必须与文档正文中的属性匹配。将容器的分区键更改为

/id
并修复删除代码以正确指定分区键。例如,

concurrentDeleteTasks.Add(container.DeleteItemAsync<string>(item, new PartitionKey(item.Id)));

3
投票

在我的情况下,出现以下错误是因为我将 .Net SDK 从 v2 更新到了 v3,如果未通过,则不再自动生成 ID。

Microsoft.Azure.Cosmos.CosmosException:'响应状态代码不 表示成功:BadRequest(400);子状态:1001;活动 ID: ; 原因:();'

我使用存储库模式,因此只需在调用 CreateItemAsync 之前添加一个检查:

if (item.Id == null)
{
    item.Id = Guid.NewGuid().ToString();
}

1
投票

我来自 CosmosDB 工程团队。根据您的问题,您已将容器上的分区键定义为 /vesselId,而文档已将容器Id 映射到 CoachVessel 类中的“id”属性。这是故意的吗?

如果在 CreateItemAsync API 中指定了可选的 PartitionKey,则它需要与 Document 中的分区键匹配。如果您打算将“id”作为分区键,那么您需要将容器的分区键定义为“id”,而不是“vesselId”。在这种情况下,如果容器的分区键确实是/vesselId,则代码期望输入文档中的属性“vesselId”设置为分区键中指定的值vessel.vesselId。您的输入文档中似乎缺少“vesselId”属性。


0
投票

几个关键因素

1>partitionkeypath 应区分大小写、准确并以 / 开头。 示例:/categoryid 以及 c#/services 中的大小写应该相同。类别 ID 不起作用 2>插入对象(产品)时,第 61 行有类别 ID,第 66 行也应该有相同的类别 ID。这浪费了我几个小时的时间

© www.soinside.com 2019 - 2024. All rights reserved.