0

I have tried copying a 1TB disks between storage accounts in the same Azure region using AzCopy and Azure Storage Explorer. AzCopy was slower than Explorer. It took 5 hours and 30 minutes every time.

I have already tried the /SynCopy option for AzCopy in a VM in the same region, but it was still slower.

My question is: can it be done any faster?

Thanks for your help.

0

1 Answer 1

1

I don't think the /SynCopy option or others for AzCopy will make faster on VM, such as the document has point out the reason as below.

Synchronously copy blobs from one storage account to another

AzCopy by default copies data between two storage endpoints asynchronously. Therefore, the copy operation runs in the background using spare bandwidth capacity that has no SLA in terms of how fast a blob is copied, and AzCopy periodically checks the copy status until the copying is completed or failed.

The /SyncCopy option ensures that the copy operation gets consistent speed. AzCopy performs the synchronous copy by downloading the blobs to copy from the specified source to local memory, and then uploading them to the Blob storage destination.

Here just recommend other solutions for your scenario, except using AzCopy or Azure Storage Explorer in a VM to copy a blob between storage accounts in the same region, there are two ways to do the same faster possiblely.

  1. Recommended to create Azure Data Factory in the same region without a VM to copy data, please refer to the offical tutorial Quickstart: Use the Copy Data tool to copy data to know how to get started. It's an alone service and will take full advantage of network bandwidth in cloud to transfer data, not like Azure VM has some limits.

  2. There is a highly concurrent data transfer tool for Azure Blob Storage named Azure/blobporter which you can try to run on VM, but I don't think it will be faster than Azure Data Factory.

2
  • Thank you for the reply. I will look into those solutions.They are new for me. Commented Mar 11, 2019 at 20:14
  • It took time but I just copied the VHD using Azure Storage Explorer. Thanks for your response Commented May 7, 2019 at 15:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.