A tool to migrate Azure storage to local storage

Are there any good tools for taking snapshots of my Azure tables and blob containers and copying them to the local development repository?

Developers sometimes need to work in an isolated environment, but would like to get a copy of some "real" application data. Now we have scripts for creating data that we can run to populate the local storage, but it would be useful to be able to capture a snapshot and go to the development repository.

+3
source share
2 answers

I usually use Cloud Storage Studio for all Azure Storage processing. Using this, you can easily download live blob from your repository and then upload it to your local repository.

+1
source

You can also use the Azure Storage Synctool to upload local storage to live storage on Azure or download (vice versa).

+1
source

All Articles