简体   繁体   English

数据从 Azure blob 复制到 S3 和 Synapse 到 Redshift

[英]Data Copy from Azure blob to S3 andn Synapse to Redshift

There is a requirement to copy from Azure Blob to S3 for 10TB data and also from Synpase to Redshift for 10TB of data.对于 10TB 数据,需要从 Azure Blob 复制到 S3,对于 10TB 数据,还需要从 Synpase 复制到 Redshift。

What is the best way to achieve these 2 migrations?实现这 2 次迁移的最佳方法是什么?

For the Redshift - you could export Azure Synapse Analytics to aa blob storage in a compatible format ideally compressed and then copy the data to S3.对于 Redshift - 您可以以理想压缩的兼容格式将 Azure Synapse Analytics 导出到 blob 存储,然后将数据复制到 S3。 It is pretty straightforward to import data from S3 to Redshift.将数据从 S3 导入 Redshift 非常简单。

You may need a VM instance to load read from Azure Storage and put into AWS S3 (doesn't matter where).您可能需要一个 VM 实例来加载从 Azure 存储读取并放入 AWS S3(不管在哪里)。 The simplest option seems to be using the default CLI (Azure and AWS) to read the content to the migration instance and write to to the target bucket.最简单的选项似乎是使用默认 CLI(Azure 和 AWS)将内容读取到迁移实例并写入目标存储桶。 However me personally - I'd maybe create an application writing down checkpoints, if the migration process interrupts for any reason, the migration process wouldn't need to start from the scratch.但是我个人 - 我可能会创建一个写下检查点的应用程序,如果迁移过程因任何原因中断,则迁移过程不需要从头开始。

There are a few options you may "tweak" based on the files to move, if there are many small files or less large files, from which region to move where, ....您可以根据要移动的文件“调整”一些选项,如果有很多小文件或较少的大文件,从哪个区域移动到哪里,......

https://aws.amazon.com/premiumsupport/knowledge-center/s3-upload-large-files/ https://aws.amazon.com/premiumsupport/knowledge-center/s3-upload-large-files/

As well you may consider using the AWS S3 Transfer Acceleration , may or may not help too.您也可以考虑使用AWS S3 Transfer Acceleration ,这可能有帮助,也可能没有帮助。

Please note every larger cloud provider has some outbound data egress cost , for 10TB it may be considerable cost请注意,每个较大的云提供商都有一些出站数据出口成本,对于 10TB,这可能是相当可观的成本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM