繁体   English   中英

在Powershell中使用Azure CLI创建CosmosDB

[英]Creating CosmosDB with Azure CLI in powershell

我正在尝试创建新的cosmosdb,但是在执行以下代码时却收到以下错误。

az cosmosdb create --name TIC_Test
                    --resource-group "TIC" 
                    --default-consistency-level  Session  
                    --locations "Central US"=0 "Central US"=0 
                    --max-interval 5  --max-staleness-prefix 100  
                    --enable-automatic-failover false  
                    --enable-virtual-network false  
                    --kind GlobalDocumentDB

错误:

az : usage: az cosmosdb create [-h] [--verbose] [--debug]
At line:2 char:1
+ az cosmosdb create --name TIC_Test --resource-group "TIC"  --default- ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (usage: az cosmo...bose] [--debug]:String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError

                          [--output {json,jsonc,table,tsv}] [--query JMESPATH]
                          --resource-group RESOURCE_GROUP_NAME --name
                          ACCOUNT_NAME [--locations LOCATIONS [LOCATIONS ...]]
                          [--tags [TAGS [TAGS ...]]]
                          [--kind {GlobalDocumentDB,MongoDB,Parse}]
                          [--default-consistency-level {Eventual,Session,BoundedStaleness,Strong,ConsistentPrefix}]
                          [--max-staleness-prefix MAX_STALENESS_PREFIX]
                          [--max-interval MAX_INTERVAL]
                          [--ip-range-filter IP_RANGE_FILTER [IP_RANGE_FILTER ...]]
                          [--enable-automatic-failover [{true,false}]]
                          [--capabilities CAPABILITIES [CAPABILITIES ...]]
                          [--enable-virtual-network [{true,false}]]
                          [--virtual-network-rules VIRTUAL_NETWORK_RULES [VIRTUAL_NETWORK_RULES ...]]
                          [--subscription _SUBSCRIPTION]
az cosmosdb create: error: list index out of range

知道可能是错误原因的原因吗?

我怀疑这行,但不确定如何指定:

 --locations "Central US"=0 "Central US"=0 

是的,-- --locations似乎是问题所在。 根据文档

以“ regionName = failoverPriority”格式分隔的位置。 例如eastus = 0 westus = 1。 对于写入区域,故障转移优先级值为0,对于读取区域,故障转移优先级值大于0。 故障转移优先级值必须唯一且小于区域总数。 默认值:指定资源组所在位置的单个区域帐户。

因此,例如,这适用于将CentralUS配置为读/写区域,并将EastUS配置为读区域:

--locations "CentralUS=0" "EastUS=1"

--locations选项允许您指定故障转移优先级。

在下面找到一个示例,该示例创建一个新的CosmosDB / SQL帐户,其中East US是主要帐户(读写)West US是次要帐户(只读)

az cosmosdb create --name "cosmosdb5555" --kind GlobalDocumentDB --resource-group "cosmosdbrg" --locations "eastus=0", "westus=1"

您正在观察错误,因为指定的--locations由于区域和语法重复而无效。

如果在--locations中指定重复的区域,将引发以下错误:

Operation failed with status: 'BadRequest'. Details: Failover priorities must be unique and 0 <= priority < (number of failover policies)
ActivityId: 689752f6-8081-11e8-8a4b-9cb6d00f36f2, Microsoft.Azure.Documents.Common/2.0.0.0

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM