Azure CosmosDB (16) 通过REST API对CosmosDB进行跨分区查询
Posted Azure Lei Zhang的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Azure CosmosDB (16) 通过REST API对CosmosDB进行跨分区查询相关的知识,希望对你有一定的参考价值。
《Windows Azure Platform 系列文章目录》
之前遇到1个问题,在这里记录一下。
我在使用Cosmos DB的时候,遇到了查询不到数据的问题。解决方案如下:
我们设计的Collection,分区键是/id
1.如果查询是按照分区键查询的,则命中率会很高,比如查询条件里面,是按照分区键id进行查询
2.如果是按照非分区键进行查询的,查询语句如下:
SELECT * FROM c where c.createdon >= \'2020-06-16 13:27:23.0000\' and c.createdon <= \'2020-06-16 13:27:24.0000\' and c.memberid=\'AAAaaaBBBbbb\'
需要在HTTP Request Header里,指定:x-ms-documentdb-query-enablecrosspartition=true,进行跨区查询
跨区查询是按照一个一个物理分区进行查询的,每次查询1个物理分区后,会在HTTP Response Header里面,返回:x-ms-continuation
后续查询的时候,需要指定上1次查询返回的x-ms-continuation,并在HTTP Request Header里面指定上1次返回的结果
和分页查询的逻辑类似。
即:
- 第一次查询的时候,不需要指定x-ms-continuation
- 第一次查询结束,服务器返回x-ms-continuation
- 第2次查询开始,指定第1次返回的x-ms-continuation,设置在HTTP Request Header里
- ……
- 第N次查询开始,指定第N-1次返回的x-ms-continuation,设置在HTTP Request Header里
- 遍历所有的CosmosDB物理分区,直到x-ms-continuation没有结果
- 查询结束
演示如下:
1.第一次查询的时候,不需要指定x-ms-continuation
2.第一次查询结束,服务器返回x-ms-continuation
3.第2次查询开始,在HTTP Request Header设置里,指定第1次返回的x-ms-continuation
4.第2次查询结束,返回新的HTTP Response Header,x-ms-continuation。如下图:
5.第N次查询开始,指定第N-1次返回的x-ms-continuation,设置在HTTP Request Header里
......
6.遍历所有的CosmosDB物理分区,直到x-ms-continuation没有结果,查询结束。
以上是关于Azure CosmosDB (16) 通过REST API对CosmosDB进行跨分区查询的主要内容,如果未能解决你的问题,请参考以下文章
Azure Function Runtime 版本:2.0.11888.0(测试版)无法连接到 cosmosDB
通过 Azure Functions UI 删除 CosmosDB 文档
通过 Azure API 管理使用 DocumentDB API 的 CosmosDb
无法使用 azure JavaScript 函数和 Key Vault 机密检索 cosmosDB 数据
Azure App Function (Functions 2.x):通过 HTTP 函数在 CosmosDB 中创建新文档