如何使用诸如power shell之类的脚本来扩展和升级Azure Cosmos DB

时间:2017-12-12 12:11:00

标签: powershell azure azure-cosmosdb

如何使用power shell或任何方法等脚本扩展和缩小Azure Cosmos DB。我想在运行时增加脚本中的Cosmos DB的RU。我认为我们可以使用Azure功能,但寻找更多选项

3 个答案:

答案 0 :(得分:0)

目前,Azure Power Shell无法管理Azure Cosmos数据库集合。请参阅此feedback

目前,您可以使用Azure CLI 2.0(基于python)来增加RU。

example

# Scale throughput
az cosmosdb collection update \
    --collection-name $collectionName \
    --name $name \
    --db-name $databaseName \
    --resource-group $resourceGroupName \
    --throughput $newThroughput

如果要使用Power Shell执行此操作,则需要调用API。这个blog会有所帮助。

答案 1 :(得分:0)

到目前为止,您可以使用azure-cosmos Python SDK与Azure Cosmos DB进行接口。

答案 2 :(得分:-1)