如何直接从S3复制文件到Azure Blob

0

【以下的问题经过翻译处理】 有没有一种免费且简单的方法可以直接将文件从S3复制到Azure Blob,而不需要先下载然后再上传呢? 我这边看了市场上的一些工具,比如Sharegate、GoodSync和Gs Richcopy360,但是它们都是付费工具!

profile picture
EXPERT
asked 5 months ago45 views
1 Answer
0

【以下的回答经过翻译处理】 您可以试一下Azure AzCopy工具来完成此操作,工具是免费的,但请注意,您仍然需要支付从Amazon S3移动文件的数据传输费用。因此,这并不是一项零成本的数据传输方案。

在配置Azure存储帐户并安装AzCopy工具后,可以参照以下示例命令,用于复制文件:

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}"

有关更多详细信息,请参见此处:https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-s3

profile picture
EXPERT
answered 5 months 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