A company has a centralized group of users with large file storage requirements that have exceeded the space available on premises. The company wants to extend its file storage capabilities for this group while retaining the performance benefit of sharing content locally.
What is the MOST operationally efficient AWS solution for this scenario?
A. Create an Amazon S3 bucket for each user. Mount each bucket by using an S3 file system mounting utility.
B. Configure and deploy an AWS Storage Gateway file gateway. Connect each user’s workstation to the file gateway.
C. Move each user’s working environment to Amazon WorkSpaces. Set up an Amazon WorkDocs account for each user.
D. Deploy an Amazon EC2 instance and attach an Amazon Elastic Block Store (Amazon EBS) Provisioned IOPS volume. Share the EBS volume directly with the users.
B
技巧:排除明显错误选项,在没有明显错误的选项中选择最合理的选项。
在这个场景中,公司需要一个既能扩展存储空间,又能保持本地共享性能的解决方案。
A. 不正确。为每个用户创建一个Amazon S3存储桶,并使用S3文件系统挂载工具挂载每个存储桶。该方案为每个用户创建一个存储桶,在管理和成本上不太高效,而且性能和延迟可能不如本地存储,特别是在需要大量随机读写操的时候。
B. 正确。配置和部署AWS Storage Gateway文件网关,将每个用户的工作站连接到文件网关。Storage Gateway 文件网关允许用户将本地应用程序无缝连接到Amazon S3 存储桶,同时保持本地文件共享的性能优势。用户可以通过网关在本地访问数据,而数据实际上存储在S3中,从而解决了存储空间的问题。这种方法结合了本地性能和云存储的容量优势,非常适合这个场景。
C. 不正确。将每个用户的工作环境迁移到Amazon WorkSpaces,为每个用户设置一个Amazon WorkDocs账户。WorkSpaces提供的是虚拟桌面服务,而WorkDocs是一个团队协作和文档管理工具;但是并不直接解决存储扩展和保持本地性能的问题。
D. 不正确。部署一个Amazon EC2实例,并附加一个Amazon Elastic Block Store (EBS) Provisioned IOPS卷,直接将EBS卷与用户共享。EBS Provisioned IOPS卷可以提供高性能的块存储能力,但将其直接用于多个用户之间的共享可能会导致性能瓶颈,并且大容量的EBS卷,会显著增加成本。