英文:
Moving files among azure blob without downloading
问题
I have a blob container with about 5TB archive files. I need to move some of those files to another container. Is there a way to avoid downloading and uploading files? I do not need to access the data of those files. I do not want to incur any charges for reading archive files. Thank you.
英文:
Currently, I have a blob container with about 5TB archive files. I need to move some of those files to another container. Is that a way to avoid download and upload files related? I do not need to access the data of those file. I do not want to get any bill about reading archive files either.
Thanks.
答案1
得分: 2
我建议您可以使用Data Factory。它通常用于传输大数据。
您可以从以下教程中学习:
通过使用Azure Data Factory在Azure Blob存储中复制和转换数据
希望这有所帮助。
英文:
I suggest that you can use Data Factory. It usually used to transfer big data.
Copy performance and scalability achievable using ADF:
You can learn from below tutorial:
Copy and transform data in Azure Blob storage by using Azure Data Factory
Hope this helps.
答案2
得分: 1
你可以使用 azcopy 来实现这一点。这是一个命令行工具,可用于启动服务器之间的传输:
AzCopy 使用服务器对服务器的 API,因此数据直接在存储服务器之间复制。这些复制操作不会使用您计算机的网络带宽。
英文:
You can use azcopy for that. It is a command line util that you can use to initiate server to server transfers:
> AzCopy uses server-to-server APIs, so data is copied directly between storage servers. These copy operations don't use the network bandwidth of your computer.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论