简体   繁体   English

亚马逊相当于谷歌存储传输服务

[英]Amazon equivalent of Google Storage Transfer Service

I have a bucket in GCP that has millions of 3kb files, and I want to copy them over to an S3 bucket.我在 GCP 中有一个包含数百万个 3kb 文件的存储桶,我想将它们复制到 S3 存储桶中。 I know google has a super fast transfer service, however I am not able to use that solution to push data back to S3 with it.我知道谷歌有一个超快速的传输服务,但是我无法使用该解决方案将数据推送回 S3。

Due to the amount of objects, running a simple gsutil -m rsync gs://mybucket s3://mybucket might not do the job because it will take at least a week to transfer everything.由于对象的数量,运行简单的gsutil -m rsync gs://mybucket s3://mybucket可能无法完成这项工作,因为传输所有内容至少需要一周时间。

Is there a faster solution than this?有比这更快的解决方案吗?

On the AWS side, you may want to see if S3 Transfer Acceleration would help.在 AWS 方面,您可能想看看S3 Transfer Acceleration是否有帮助。 There are specific requirements for enabling it and naming it.启用它和命名它有特定的要求。 You would want to make sure the bucket was in a location close to where the data is currently stored, but that might help speed things up a bit.您可能希望确保存储桶位于当前存储数据的位置附近,但这可能有助于加快速度。

We got the same problem of pushing small files to S3.我们在将小文件推送到 S3 时遇到了同样的问题。 Compressing and storing it back does the same thing.压缩并将其存储回原处执行相同的操作。 It is the limits set to your account.这是为您的帐户设置的限制。

As mentioned in the documentation you need to open support ticket to increase your limits before you send burst of requests.如文档中所述,您需要在发送大量请求之前打开支持票以增加限制。

https://docs.aws.amazon.com/AmazonS3/latest/dev/request-rate-perf-considerations.html https://docs.aws.amazon.com/AmazonS3/latest/dev/request-rate-perf-thinkations.html

It is NOT size of the file or size of all objects matters here.在这里,文件的大小或所有对象的大小并不重要。 It is the number of files you have is the problem.这是您拥有的文件数量的问题。

Hope it helps.希望能帮助到你。

Personally I think the main issue that you're going to have is not so much the ingress rate to Amazon's S3 service but more so the network egress rate from Google's Network.就我个人而言,我认为您将遇到的主要问题不是 Amazon S3 服务的入口率,而是 Google 网络的网络出口率。 Even if you enabled the S3 Transfer Acceleration service, you'll still be restricted by the egress speed of Google's Network.即使您启用了 S3 Transfer Acceleration 服务,您仍然会受到 Google 网络的出口速度的限制。

There are other services that you can set up which might assist in speeding up the process.您可以设置其他服务,这些服务可能有助于加快流程。 Perhaps look into one of the Interconnect solutions which allow you to set up fast links between networks.也许可以研究一种互连解决方案,它允许您在网络之间建立快速链接。 The easiest solution to set up is the Cloud VPN solution which could allow you to set up a fast uplink between an AWS and Google Network (1.5-3 Gbps for each tunnel).设置最简单的解决方案是Cloud VPN解决方案,它可以让您在 AWS 和 Google 网络之间设置快速上行链路(每个隧道 1.5-3 Gbps)。

Otherwise from your data requirements the transfer of 3,000 GB isn't a terrible amount of data and setting up a Cloud server to transfer data over the space of a week isn't too bad.否则,根据您的数据要求,传输 3,000 GB 的数据量并不可怕,设置云服务器以在一周内传输数据也不算太糟糕。 You might find that by the time you set up another solution it may have been easier in the first place to just spin up a machine and let it run for a week.您可能会发现,当您设置另一个解决方案时,首先启动机器并让它运行一周可能会更容易。

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

相关问题 使用 Twilio 的 Google 存储传输服务 - Google storage transfer service with Twilio Google Storage Transfer Service 的成本效益 - Google Storage Transfer Service cost-efficiency 使用传输服务控制台在AWS到Google云存储迁移期间未经授权的错误 - Unauthorized Error During AWS to Google Cloud Storage Migration Using Transfer Service Console Amazon Web Service,缺少存储卷 - Amazon Web Service, Missing Storage Volume 使用Google Cloud Storage作为Amazon CloudFront的来源 - Using Google Cloud Storage as origin for Amazon CloudFront 在 Mac 上的 Windows 的 Amazon Web 服务模拟器上添加更多存储空间 - Add more storage on a Amazon Web Service emulator for Windows on Mac 面向经过身份验证的用户的 Amazon Web Service (AWS) 私有存储 - Amazon Web Service (AWS) Private Storage For Authenticated Users C++ Builder 10.3 Rio 亚马逊存储服务示例 - C++ Builder 10.3 Rio Amazon Storage Service Example 什么是Google BigQuery等效的AWS服务? - What is the Google BigQuery equivalent AWS service? 如何阻止Amazon S3(Amazon Simple Storage Service)中的恶意程序? - How To Block Bad Bots in Amazon S3 (Amazon Simple Storage Service)?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM