是否可以检查 Azure Cosmos DB 中是否存在逻辑分区?

Is it possible to check if a logical partition exist in Azure Cosmos DB?

使用QueryRequestOptions查询partitionkey时,是否出现Partition key not found异常?还是有任何其他方式可以通知我查询中不存在逻辑分区?

Is there any Partition key not found exception when we query with partitionkey via QueryRequestOptions?

假设你说的是分区键的值,据我所知在 Cosmos DB 中没有这样的东西。

or is there any other ways I can be notified that the logical partition does not exist in a query?

一种可能的查找方法是使用查询中的分区键值查询您的容器,并尝试最多获取一个文档。如果您没有取回任何文档(即得到空结果集),则意味着容器中不存在逻辑分区。