A healthcare provider runs a radiology application that uploads medical imaging files and associated metadata to Amazon S3. The daily data patterns are as follows:
* High-resolution MRI scans (average size ) are accessed frequently by radiologists for the first . After , the scans are rarely accessed but must be retained for to comply with local regulations. The retrieval time for these files must not exceed .
* Scan metadata reports (average size ) are queried frequently for the first to generate analytics. After , these reports are no longer needed and should be deleted.
Which combination of Amazon S3 Lifecycle configurations will meet these requirements in the most cost-effective manner? (Select TWO.)
- Configure a lifecycle rule to transition the MRI scans to S3 Glacier Flexible Retrieval 45 days after creation.Answer
- BConfigure a lifecycle rule to transition the metadata reports to S3 Standard-Infrequent Access (S3 Standard-IA) 5 days after creation, and expire them after 10 days.
- Configure a lifecycle rule to expire the metadata reports 10 days after creation.Answer
- DConfigure a lifecycle rule to transition the MRI scans to S3 Glacier Deep Archive 45 days after creation.
- EConfigure a lifecycle rule to transition the metadata reports to S3 One Zone-Infrequent Access (S3 One Zone-IA) 7 days after creation, and expire them after 10 days.
Answer
Configure a lifecycle rule to transition the MRI scans to S3 Glacier Flexible Retrieval 45 days after creation, and configure a lifecycle rule to expire the metadata files 10 days after creation without transitioning them to another tier.
Transitioning the MRI scans to S3 Glacier Flexible Retrieval after 45 days is highly cost-effective and meets the 5-hour retrieval time SLA because standard retrieval takes 3-5 hours. For the metadata reports, keeping them in S3 Standard and directly expiring them after 10 days avoids the minimum storage duration (30 days) and minimum billing size (128 KB) penalties associated with transitioning small files to S3 Standard-IA or S3 One Zone-IA.
Step-by-Step Solution
Key Concept
Cost-optimized storage tiering requires matching data access patterns, file sizes, and retention needs with S3 storage class features, specifically respecting minimum storage durations (30 days for S3 Standard-IA and S3 One Zone-IA) and minimum object sizes (128 KB for IA classes).