A biotechnology company runs clinical trial data pipelines and stores two types of files in an Amazon S3 bucket:
* Raw DNA Sequencing Outputs: Average file size is . These files are accessed frequently during the first of analysis, accessed occasionally for the next (Days ), and then rarely accessed but must be preserved for to meet regulatory requirements. Retrieval within is acceptable.
* Pipeline Execution Metadata Logs: Average file size is . These files are accessed frequently during the first for execution verification and are no longer needed afterward, but must be deleted after a total of for security compliance.
Which S3 lifecycle configuration is the most cost-effective for these requirements?
- Transition the raw DNA sequencing outputs directly from S3 Standard to S3 Glacier Deep Archive on Day 24, and configure the pipeline execution metadata logs to be deleted from S3 Standard on Day 25 without any transition.Answer
- BTransition the raw DNA sequencing outputs to S3 Standard-IA on Day 14, transition them to S3 Glacier Deep Archive on Day 24, and transition the pipeline execution metadata logs to S3 Standard-IA on Day 7 before deleting them on Day 25.
- CTransition the raw DNA sequencing outputs to S3 Standard-IA on Day 14, transition them to S3 Glacier Flexible Retrieval on Day 24, and configure the pipeline execution metadata logs to be deleted from S3 Standard on Day 25 without any transition.
- DTransition the raw DNA sequencing outputs directly from S3 Standard to S3 Glacier Deep Archive on Day 24, and transition the pipeline execution metadata logs to S3 Standard-IA on Day 7 before deleting them on Day 25.
Answer
The most cost-effective S3 lifecycle configuration transitions the raw DNA sequencing outputs directly from S3 Standard to S3 Glacier Deep Archive on Day 24, and deletes the pipeline execution metadata logs directly from S3 Standard on Day 25 without transition.
The correct answer identifies that transitioning the raw DNA sequencing outputs directly from S3 Standard to S3 Glacier Deep Archive on Day 24 avoids the minimum duration storage penalty associated with S3 Standard-IA. It also correctly determines that keeping the metadata logs in S3 Standard and deleting them on Day 25 is more economical than transitioning them to S3 Standard-IA, as they are below the minimum billing size and would be deleted before the minimum storage duration of S3 Standard-IA.
Step-by-Step Solution
Key Concept
S3 Standard-IA has a minimum billing size of and a minimum storage duration of . Moving files smaller than or transitioning/deleting objects before in Standard-IA results in unnecessary costs. Direct transition from S3 Standard to S3 Glacier Deep Archive is valid and avoids intermediate IA tier penalties.
Estimated Time:3m 0s