0

Cosmos 重新索引所需的时间比预期的要长。有什么方法可以检查分区集合是否仍在进行重新索引。即使我将索引策略设置为 none 并保持一致,查询仍会引发错误。

4

1 回答 1

0

x-ms-documentdb-collection-index-transformation-progress您可以通过阅读GET 集合中的标题来查看百分比进度。例如,在 .NET 中,您可以运行以下代码段:

// retrieve the container's details
ContainerResponse containerResponse = await client.GetContainer("database", "container")
    .ReadContainerAsync(new ContainerRequestOptions { PopulateQuotaInfo = true });
// retrieve the index transformation progress from the result
long indexTransformationProgress = long.Parse(
    containerResponse.Headers["x-ms-documentdb-collection-index-transformation-progress"]);

更多详细信息:https ://docs.microsoft.com/en-us/azure/cosmos-db/how-to-manage-indexing-policy#updating-indexing-policy

于 2019-10-22T18:39:08.587 回答