https://github.com/jefking/copyblobs
Copies all files in a container to another container, in another storage account.
https://github.com/jefking/copyblobs
aci arm azcopy azure blob container copy data file files from instant move one-time simple storage sync template to transfer
Last synced: 7 months ago
JSON representation
Copies all files in a container to another container, in another storage account.
- Host: GitHub
- URL: https://github.com/jefking/copyblobs
- Owner: jefking
- License: apache-2.0
- Created: 2018-10-17T03:06:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T03:52:20.000Z (almost 7 years ago)
- Last Synced: 2025-02-01T23:17:41.430Z (8 months ago)
- Topics: aci, arm, azcopy, azure, blob, container, copy, data, file, files, from, instant, move, one-time, simple, storage, sync, template, to, transfer
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Storage Copy
Copies all files in a container to another Storage Account container.1. Stands up ACI
2. Runs AZCopy
3. Transfers Blobs
- Utilizes bandwidth in the data center
- Ensure the best possible transfer rate.# Tools
[Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest)# Commands
## 1. Create/Choose Resource Group
Choose the region nearest to the data; this is where ACI will be brought up.``
az group create -g --location "West US 2"
``Deployment file
- Stands up ACI (in the region of the Resource Group)
- Intiates copy of data## 2. Deploy
``
az group deployment create --name sync --resource-group --template-file transfer.json --parameters source=SOURCE soruceKey=KEY destination=DESTINATION destinationKey=KEY
``OR (Edit parameter.json)
``
az group deployment create --name sync --resource-group --template-file transfer.json --parameters parameters.json
``