A company collects data for temperature, humidity, and atmospheric pressure in cities across multiple continents. The average volume of data that the company collects from each site daily is 500 GB. Each site has a high-speed Internet connection.
The company wants to aggregate the data from all these global sites as quickly as possible in a single Amazon S3 bucket. The solution must minimize operational complexity.
Which solution meets these requirements?
A. Turn on S3 Transfer Acceleration on the destination S3 bucket. Use multipart uploads to directly upload site data to the destination S3 bucket.
B. Upload the data from each site to an S3 bucket in the closest Region. Use S3 Cross-Region Replication to copy objects to the destination S3 bucket. Then remove the data from the origin S3 bucket.
C. Schedule AWS Snowball Edge Storage Optimized device jobs daily to transfer data from each site to the closest Region. Use S3 Cross-Region Replication to copy objects to the destination S3 bucket.
D. Upload the data from each site to an Amazon EC2 instance in the closest Region. Store the data in an Amazon Elastic Block Store (Amazon EBS) volume. At regular intervals, take an EBS snapshot and copy it to the Region that contains the destination S3 bucket. Restore the EBS volume in that Region.
A
技巧:排除明显错误选项,在没有明显错误的选项中选择最合理的选项。
某公司在多个大陆的城市收集温度、湿度和大气压力数据,并希望尽快将这些全球站点的数据汇总到一个Amazon S3存储桶中的需求,同时要求尽可能简化操作复杂度,限制需要提出一个合理的解决方案
A. 正确。在目标S3存储桶上启用S3传输加速。使用多部分上传直接将站点数据上传到目标S3存储桶。启用S3传输加速,可以加快全球各地数据上传到S3存储桶的速度。传输加速通过Amazon CloudFront网络边缘位置来接收数据,然后利用Amazon S3的内部网络将数据高效地传输到目标存储桶。此外,使用多部分上传可以处理大文件,提高上传效率和可靠性。这种方式简化了操作,因为所有数据都直接上传到目标存储桶,无需额外的复制或同步步骤。
B. 不正确。将每个站点的数据上传到最近的区域的S3存储桶。使用S3跨区域复制将对象复制到目标S3存储桶。然后从源S3存储桶中删除数据。这种方式利用了S3跨区域复制的功能,但它增加了操作的复杂性。每个站点都需要管理一个S3存储桶,并且需要配置跨区域复制规则。此外,还需要定期清理源存储桶中的数据,增加了管理成本。
C. 不正确。每天安排AWS Snowball Edge存储优化型设备作业,将数据从每个站点传输到最近的区域。使用S3跨区域复制将对象复制到目标S3存储桶。AWS Snowball Edge虽然适用于大规模数据传输,但这种方式对于每天500GB的数据量来说过于繁琐和昂贵。Snowball Edge设备的调度、运输和数据处理都需要额外的时间和成本。
D. 不正确。将每个站点的数据上传到最近的区域的Amazon EC2实例。将数据存储在Amazon Elastic Block Store (EBS)卷上。定期拍摄EBS快照,并将其复制到包含目标S3存储桶的区域。在该区域恢复EBS卷。该解决方案增加了操作的复杂性。它涉及在多个区域管理EC2实例和EBS卷,定期拍摄快照和复制快照,以及恢复快照。这不仅增加了管理成本,而且数据传输的效率也低于直接使用S3传输加速。