Start-AzureStorageBlobCopy vs AzCopy: which one takes lesser time

后端 未结 5 637
不知归路
不知归路 2021-01-04 23:19

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

5条回答
  •  花落未央
    2021-01-04 23:53

    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.

提交回复
热议问题