- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我的 Cosmos DB 有多个分区,是否有任何理由不设置 EnableCrossPartitionQuery
至 真 ?
我知道如果运行可能会影响多个分区的查询,这是必要的。但是,如果查询使用有效的分区键并且肯定只会命中一个分区,是否会因为我将该标志设置为 true 而导致性能损失或成本增加呢?
最佳答案
But what if the query uses a valid partition key and definitely will only hit one partition, is there any performance loss or increased cost because I set that flag to true?
EnableCrossPartitionQuery
,成本也不会改变。为true。因为请求只扫描您已经设置的特定分区。我做了一个样本测试并尝试验证它。
FeedOptions feedOptions = new FeedOptions();
PartitionKey partitionKey = new PartitionKey("A");
feedOptions.setPartitionKey(partitionKey);
feedOptions.setEnableCrossPartitionQuery(true);
FeedResponse<Document> queryResults = client.queryDocuments(
"/dbs/db/colls/part",
"SELECT * FROM c",
feedOptions);
System.out.println("Running SQL query...");
for (Document document : queryResults.getQueryIterable()) {
System.out.println(String.format("\tRead %s", document));
}
System.out.println(queryResults.getRequestCharge());
EnableCrossPartitionQuery
仅当分区集合的查询不限于单个分区键值时才需要使用选项。如果您知 Prop 体的分区键,则无需设置
EnableCrossPartitionQuery
.
关于azure-cosmosdb - 为什么不总是使用 EnableCrossPartitionQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54864553/
如果我的 Cosmos DB 有多个分区,是否有任何理由不设置 EnableCrossPartitionQuery至 真 ? 我知道如果运行可能会影响多个分区的查询,这是必要的。但是,如果查询使用有效
我创建了一个分区键为 "/countryId" 的集合,因为当我使用 SQL 查询读取多个文档时,我指定了 FeedOptions { EnableCrossPartitionQuery = true
我创建了一个分区键为 "/countryId" 的集合,因为当我使用 SQL 查询读取多个文档时,我指定了 FeedOptions { EnableCrossPartitionQuery = true
我遇到一个问题,如果我为特定查询指定分区键,我将获得我期望的记录。但是,如果我不指定分区键并将 EnableCrossPartitionQuery 设置为 true,它将不会返回/查找任何文档。 这实
我是一名优秀的程序员,十分优秀!