Jess
Jess

Reputation: 3715

How to copy(backup) Azure CosmosDB container to Azure blob storage?

There are many Containers in my CosmosDB Database, And I need to backup some, but not all containers everyday. Some container are backed up for 7days, some are 15 days.

  1. I don't want to use incremental backup, because we do backup once everyday.
  2. Maybe we store backup data-set into Azure blob storage.

The thing I don't know => container == collection. Azure document is so confusing!

Upvotes: 0

Views: 1612

Answers (1)

Figo Cui
Figo Cui

Reputation: 26

Probably you can create a job on Azure Data Factory (aka ADF, https://learn.microsoft.com/en-us/azure/data-factory/connector-azure-cosmos-db), use the ADF job to copy data from these containers, and save the data as files (one file for one container) in somewhere (like Azure Blob Storage).

Upvotes: 1

Related Questions