Azure CosmosDB 绑定规范

Azure CosmosDB 绑定组件的详细文档

配置

要设置 Azure CosmosDB 绑定,请创建一个类型为 bindings.azure.cosmosdb 的组件。 See this guide on how to create and apply a binding configuration.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: bindings.azure.cosmosdb
  8. version: v1
  9. metadata:
  10. - name: url
  11. value: https://******.documents.azure.com:443/
  12. - name: masterKey
  13. value: *****
  14. - name: database
  15. value: db
  16. - name: collection
  17. value: collection
  18. - name: partitionKey
  19. value: message

Warning

以上示例将密钥明文存储, It is recommended to use a secret store for the secrets as described here.

元数据字段规范

字段必填绑定支持详情Example
urlY输出CosmosDB 地址https://******.documents.azure.com:443/
masterKeyY输出CosmosDB 账户主键“master-key”
databaseY输出CosmosDB 数据库名“OrderDb”
collectionY输出数据库中容器的名称。“Orders”
partitionKeyY输出要从有效负载中提取并在容器中使用的partitionKey的名称“OrderId”, “message”

欲了解更多信息,请参阅 Azure Cosmos DB 资源模型

绑定支持

字段名为 ttlInSeconds

  • create

相关链接