【发布时间】:2019-10-15 11:10:11
【问题描述】:
我使用this ARM 模板创建了一个 Cosmos Db 帐户、数据库和容器。通过 Azure DevOps 发布管道进行部署。
我使用this ARM 模板来调整数据库吞吐量。它也在发布管道中并且正在运行。
目前,吞吐量是在数据库级别提供的,并在所有容器之间共享。如何在容器级别配置吞吐量?我尝试运行this ARM 模板来更新容器级别的吞吐量。似乎一旦在数据库级别配置共享吞吐量,就无法在容器级别配置吞吐量。
我找到了this 参考文档,但未列出吞吐量。我是否遗漏了一些非常明显的东西,或者尚未实现所需的功能?
更新: 尝试使用上述模板更新容器时,我得到以下信息:
2019-05-29T20:25:10.5166366Z There were errors in your deployment. Error code: DeploymentFailed.
2019-05-29T20:25:10.5236514Z ##[error]At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.
2019-05-29T20:25:10.5246027Z ##[error]Details:
2019-05-29T20:25:10.5246412Z ##[error]NotFound: {
"code": "NotFound",
"message": "Entity with the specified id does not exist in the system.\r\nActivityId: 7ba84...b52b2, Microsoft.Azure.Documents.Common/2.4.0.0"
} undefined
2019-05-29T20:25:10.5246730Z ##[error]Task failed while creating or updating the template deployment.
【问题讨论】:
标签: azure azure-resource-manager arm-template