To setup Azure Cosmos DB binding create a component of type bindings.azure.cosmosdb
. See this guide on how to create and apply a binding configuration.
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: <NAME>
spec:
type: bindings.azure.cosmosdb
version: v1
metadata:
- name: url
value: "https://******.documents.azure.com:443/"
- name: masterKey
value: "*****"
- name: database
value: "OrderDb"
- name: collection
value: "Orders"
- name: partitionKey
value: "<message>"
Field | Required | Binding support | Details | Example |
---|---|---|---|---|
url | Y | Output | The Cosmos DB url | "https://******.documents.azure.com:443/" |
masterKey | Y | Output | The Cosmos DB account master key | "master-key" |
database | Y | Output | The name of the Cosmos DB database | "OrderDb" |
collection | Y | Output | The name of the container inside the database. | "Orders" |
partitionKey | Y | Output | The name of the key to extract from the payload (document to be created) that is used as the partition key. This name must match the partition key specified upon creation of the Cosmos DB container. | "OrderId" , "message" |
For more information see Azure Cosmos DB resource model.
The Azure Cosmos DB binding component supports authentication using all Microsoft Entra ID mechanisms. For further information and the relevant component metadata fields to provide depending on the choice of Microsoft Entra ID authentication mechanism, see the docs for authenticating to Azure.
You can read additional information for setting up Cosmos DB with Azure AD authentication in the section below.
This component supports output binding with the following operations:
create
Azure Cosmos DB shares a strict metadata request rate limit across all databases in a single Azure Cosmos DB account. New connections to Azure Cosmos DB assume a large percentage of the allowable request rate limit. (See the Cosmos DB documentation)
Therefore several strategies must be applied to avoid simultaneous new connections to Azure Cosmos DB:
initTimeout
value to allow the component to retry connecting to Azure Cosmos DB during side car initialization for up to 5 minutes. The default value is 5s
and should be increased. When using Kubernetes, increasing this value may also require an update to your Readiness and Liveness probes.spec:
type: bindings.azure.cosmosdb
version: v1
initTimeout: 5m
metadata:
The output binding create
operation requires the following keys to exist in the payload of every document to be created:
id
: a unique ID for the document to be created<partitionKey>
: the name of the partition key specified via the spec.partitionKey
in the component definition. This must also match the partition key specified upon creation of the Cosmos DB container.When using the Dapr Cosmos DB binding and authenticating with Azure AD, you need to perform a few additional steps to set up your environment.
Prerequisites:
azureClientId
in the metadata).When using the Cosmos DB binding, you don’t need to create stored procedures as you do in the case of the Cosmos DB state store.
You can find more information on the official documentation, including instructions to assign more granular permissions.
In order to grant your application permissions to access data stored in Cosmos DB, you need to assign it a custom role for the Cosmos DB data plane. In this example you’re going to use a built-in role, “Cosmos DB Built-in Data Contributor”, which grants your application full read-write access to the data; you can optionally create custom, fine-tuned roles following the instructions in the official docs.
# Name of the Resource Group that contains your Cosmos DB
RESOURCE_GROUP="..."
# Name of your Cosmos DB account
ACCOUNT_NAME="..."
# ID of your Service Principal object
PRINCIPAL_ID="..."
# ID of the "Cosmos DB Built-in Data Contributor" role
# You can also use the ID of a custom role
ROLE_ID="00000000-0000-0000-0000-000000000002"
az cosmosdb sql role assignment create \
--account-name "$ACCOUNT_NAME" \
--resource-group "$RESOURCE_GROUP" \
--scope "/" \
--principal-id "$PRINCIPAL_ID" \
--role-definition-id "$ROLE_ID"