Reputation: 3715
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.
The thing I don't know => container == collection
. Azure document is so confusing!
Upvotes: 0
Views: 1612
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