Start-AzureStorageBlobCopy vs AzCopy: which one takes lesser time

Aatif Akhter picture Aatif Akhter · Apr 26, 2015 · Viewed 7.5k times · Source

I need to move vhds from one subscription to other. I would like to know which one is better option for the same: Start-AzureStorageBlobCopy or AzCopy?

Which one takes lesser time ?

Answer

Stopped Contributing picture Stopped Contributing · Apr 27, 2015

Both of them would take the same time as all they do is initiate Async Server-Side Blob Copy. They just tell the service to start copying blob from source to destination. The actual copy operation is performed by Azure Blob Storage Service. The time it would take to copy the blob would depend on a number of factors including but not limited to:

  • Source & destination location.
  • Size of the source blob.
  • Load on storage service.