gpt4 book ai didi

azure - 为什么 CosmosDB 在通过 ARM 模板创建文档集合时忽略索引?

转载 作者:行者123 更新时间:2023-12-02 07:25:01 24 4
gpt4 key购买 nike

给定 ARM 模板:

{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"name": "1test2/sql/2test3/3test4",
"type": "Microsoft.DocumentDB/databaseAccounts/apis/databases/containers",
"apiVersion": "2015-04-08",
"properties": {
"resource": {
"id": "3test4",
"indexingPolicy": {
"indexingMode": "Consistent",
"includedPaths": [
{
"path": "/definition/property/?",
"indexes": [
{
"kind": "Range",
"dataType": "String"
}
]
}
],
"excludedPaths": [
{
"path": "/*"
}
]
},
"partitionKey": {
"paths": [
"/definition/id"
],
"kind": "Hash"
},
},
"options": {}
}
}
]
}

使用 PowerShell 命令部署到现有 CosmosDB 数据库时New-AzureRmResourceGroupDeployment,生成的索引设置为:

{
"indexingMode": "consistent",
"automatic": true,
"includedPaths": [
{
"path": "/definition/property/?",
"indexes": []
}
],
"excludedPaths": [
{
"path": "/*"
},
{
"path": "/\"_etag\"/?"
}
]
}

因此,虽然 CosmosDB 接受“includedPaths”,但它会忽略“索引”。我做错了什么还是这是预期的?

最佳答案

最近对 Cosmos DB 索引引擎进行了更改,默认为字符串和数字的范围索引,精度为 -1。

ARM 模板和文档尚未更新以反射(reflect)此默认值。

如果对索引策略进行非默认更改(例如添加空间索引),它们将包含在已部署的容器中。

关于azure - 为什么 CosmosDB 在通过 ARM 模板创建文档集合时忽略索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56890277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com