A company is designing a data lake on Amazon S3. Data is ingested from various sources, including IoT devices, and must be stored in a cost-effective manner. The data access patterns are unpredictable; some data is accessed frequently for a few days, then rarely accessed. The company wants to minimize storage costs while ensuring data is available within minutes when accessed. Which storage class should they use for the data?
Automatically optimizes costs for unknown or changing access patterns, with millisecond retrieval.
Why this answer
S3 Intelligent-Tiering is the correct choice because it automatically moves data between two access tiers (frequent and infrequent access) based on changing access patterns, with no retrieval fees. This matches the unpredictable access pattern described—data accessed frequently for a few days then rarely—while ensuring data is available within minutes (milliseconds latency). It minimizes storage costs by charging lower rates for infrequently accessed data without requiring manual lifecycle management.
Exam trap
The trap here is that candidates often choose S3 Standard for its low latency and availability, overlooking the cost savings of Intelligent-Tiering for unpredictable access patterns, or mistakenly select S3 Glacier Deep Archive thinking it is the cheapest option without considering the retrieval time requirement of 'within minutes'.
How to eliminate wrong answers
Option A is wrong because S3 Standard is designed for frequently accessed data and would be cost-inefficient for data that becomes rarely accessed after a few days, as it charges the same rate regardless of access frequency. Option C is wrong because S3 Glacier Deep Archive has retrieval times of 12 hours or more (not minutes) and is intended for archival data that is accessed at most once or twice per year, making it unsuitable for data that needs availability within minutes. Option D is wrong because S3 One Zone-Infrequent Access stores data in a single Availability Zone, which risks data loss if that zone fails, and it does not automatically adapt to changing access patterns, requiring manual lifecycle transitions to avoid higher costs when data becomes rarely accessed.