A meteorological research center stores two types of data in a single Amazon S3 bucket:
* Satellite Images: Average file size is . These files are accessed frequently for the first , after which they are rarely retrieved but must be retained for for climate modeling.
* Station Telemetry Logs: Average file size is . These logs are analyzed immediately upon upload, may be re-processed up to after ingestion, and are no longer needed afterward.
Which TWO lifecycle configuration actions will result in the most cost-effective storage solution for this data?
- Transition the Satellite Images to S3 Standard-Infrequent Access (S3 Standard-IA) after upload.Answer
- Configure an expiration rule to permanently delete the Station Telemetry Logs after upload without transitioning them to another storage class.Answer
- CTransition the Station Telemetry Logs to S3 Standard-Infrequent Access (S3 Standard-IA) immediately upon upload, then expire them after .
- DTransition the Station Telemetry Logs to S3 One Zone-Infrequent Access (S3 One Zone-IA) after upload, then expire them after .
- ETransition the Station Telemetry Logs to S3 Standard-Infrequent Access (S3 Standard-IA) after upload, then expire them after .
Answer
The correct answer is to transition the Satellite Images to S3 Standard-IA 14 days after upload and permanently delete the Station Telemetry Logs 10 days after upload without transitioning them.
Transitioning the Satellite Images to S3 Standard-IA after 14 days is correct because the average file size (15 MB) exceeds the 128 KB minimum size threshold, and the remaining 351 days of retention exceed the 30-day minimum storage duration of S3 Standard-IA. Deleting the Station Telemetry Logs after 10 days without transitioning them is correct because their average size (5 KB) is well below the 128 KB minimum billing size for S3 Standard-IA, and their 10-day retention is below the 30-day minimum storage duration. Thus, keeping them in S3 Standard and deleting them directly avoids both size and duration penalties.
Step-by-Step Solution
Key Concept
Selecting S3 storage classes based on object size thresholds and minimum storage duration constraints.