copy files directly from from S3 to Azure blob

0

Is there a free and easy way to copy files directly from S3 to blob without having to download it and then upload it? I have already looked at some tools in the market like Sharegate, GoodSync and Gs Richcopy360 , but all are paid tools !

Terry
asked a year ago303 views
2 Answers
1
Accepted Answer

hi,

You can try Azure AzCopy tool to do this. Refer here for more details: https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-s3 So, you can do this for free. But note that that data transfer costs for moving the files from Amazon S3 will still apply. So, in that way it won't be a zero cost transfer. After configuring your Azure storage account and installing the AzCopy tool, here is a sample command that you can use to copy the files

azcopy copy "https://s3.amazonaws.com/{bucket}/{path}" "https://{storage-account}.blob.core.windows.net/{container}/{path}" --source-key "{aws-access-key}" --dest-key "{azure-storage-access-key}"

Hope this helps

Thanks Arun

AWS
Arun
answered a year ago
  • Yeah, I got it and thanks

1

you can follow below article, just keep in mind there will be charges for data transfer and storage .

https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-s3

Sachin
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions