Update periodic backup storage redundancy for Azure Cosmos DB
Article
APPLIES TO:
NoSQL
MongoDB
Cassandra
Gremlin
Table
By default, Azure Cosmos DB stores periodic mode backup data in geo-redundant blob storage that is replicated to a paired region. You can override the default backup storage redundancy. This article explains how to update the backup storage redundancy using Azure CLI and PowerShell. It also shows how to configure an Azure policy on your accounts to enforce the required storage redundancy.
Sign in to the Azure portal and navigate to your Azure Cosmos DB account.
Open the Backup & Restore pane, update the backup storage redundancy and select Submit. It takes few minutes for the operation to complete.
Ensure you have the latest version of Azure CLI or a version higher than or equal to 2.30.0. If you have the cosmosdb-preview extension installed, make sure to remove it.
Use the az cosmosdb locations show command to get the backup redundancy options available in the regions where your account exists.
az cosmosdb locations show \
--location <region-name>
The output should include JSON similar to this example:
The previous command shows a list of backup redundancies available in the specific region. Supported values are displayed in the backupStorageRedundancies property. For example some regions may support up to three redundancy options: Geo, Zone, and Local. Other regions may support a subset of these options. Before updating, choose the backup storage redundancy option that is supported in all the regions your Azure Cosmos DB account uses.
Use the az cosmosdb update command with the chosen backup redundancy option to update the backup redundancy on an existing account.
az cosmosdb update \
--resource-group <resource-group-name> \
--name <account_name> \
--backup-redundancy Zone
Alternatively, use the az cosmosdb create command to create a new account with the chosen backup redundancy option.
The previous command shows a list of backup redundancies available in the specific region. Supported values are displayed in the BackupStorageRedundancies property. For example some regions may support up to three redundancy options: Geo, Zone, and Local. Other regions may support a subset of these options. Before updating, choose the backup storage redundancy option that is supported in all the regions your Azure Cosmos DB account uses.
Use the Update-AzCosmosDBAccount cmdlet with the chosen backup redundancy option to update the backup redundancy on an existing account:
Azure Policy helps you to enforce organizational standards and to assess compliance at-scale. For more information, see what is Azure Policy?.
The following sample shows how to add an Azure policy for Azure Cosmos DB accounts to validate (using audit) that they have their backup redundancy configured to Local.