我想在 azure cosmos db 中存储以下形式的数据:
{
"id": "guid",
"name": "a name"
"tenantId": "guid",
"filter1": true,
"filter2": false,
"hierarchicalData" :{}
}
每个文档的大小将达到几兆字节。
我需要能够为 {tenantId,filter1,filter2} 的给定搜索返回一个 {id, name} 列表(100 < count < 10k,每个租户)。
从文档中,我看到我可以使用投影进行 SQL 查询,但不确定是否有更好的方法。
在有效利用 RU 的同时,是否有理想的方法来完成上述工作?