
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company stores call transcript files on a monthly basis. Users access the files randomly within 1 year of the call, but users access the files infrequently after 1 year. The company wants to optimize its solution by giving users the ability to query and retrieve files that are less than 1-year-old as quickly as possible. A delay in retrieving older files is acceptable.
Which solution will meet these requirements MOST cost-effectively?
A
Store individual files with tags in Amazon S3 Glacier Instant Retrieval. Query the tags to retrieve the files from S3 Glacier Instant Retrieval.
B
Store individual files in Amazon S3 Intelligent-Tiering. Use S3 Lifecycle policies to move the files to S3 Glacier Flexible Retrieval after 1 year. Query and retrieve the files that are in Amazon S3 by using Amazon Athena. Query and retrieve the files that are in S3 Glacier by using S3 Glacier Select.
C
Store individual files with tags in Amazon S3 Standard storage. Store search metadata for each archive in Amazon S3 Standard storage. Use S3 Lifecycle policies to move the files to S3 Glacier Instant Retrieval after 1 year. Query and retrieve the files by searching for metadata from Amazon S3.
D
Store individual files in Amazon S3 Standard storage. Use S3 Lifecycle policies to move the files to S3 Glacier Deep Archive after 1 year. Store search metadata in Amazon RDS. Query the files from Amazon RDS. Retrieve the files from S3 Glacier Deep Archive.
Explanation:
Option B is the most cost-effective solution because it:
Uses S3 Intelligent-Tiering for files less than 1 year old: This automatically moves objects between access tiers (Frequent, Infrequent Access, Archive Instant Access) based on changing access patterns, optimizing costs while maintaining low-latency retrieval for frequently accessed files.
Moves older files to S3 Glacier Flexible Retrieval after 1 year: This is appropriate for infrequently accessed data where retrieval times of minutes to hours are acceptable (as stated in requirements).
Uses Amazon Athena for querying files in S3: Athena allows SQL queries directly on S3 data without needing to manage infrastructure.
Uses S3 Glacier Select for querying files in Glacier: This allows querying data directly in Glacier without needing to restore entire archives.
Why other options are less optimal:
Key AWS Services Used:
This solution balances cost optimization with the required performance characteristics for both access patterns.