Cosmos 重新索引所需的时间比预期的要长。有什么方法可以检查分区集合是否仍在进行重新索引。即使我将索引策略设置为 none 并保持一致,查询仍会引发错误。
问问题
328 次
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"]);
于 2019-10-22T18:39:08.587 回答