A genomics research institute runs sequencing pipelines on AWS and stores its output files in an Amazon S3 bucket. The data consists of two distinct categories:
* Alignment files (`.bam`): These files average ` MB` in size. They are accessed frequently during the first ` days` of a run, after which they are rarely accessed. They must be kept for exactly ` days` for quality control and then deleted.
* Variant call files (`.vcf`): These files average ` KB` in size. They are accessed less than once a year, but they must be retained permanently for compliance and must be available within minutes when requested.
Which combination of actions will meet these requirements in the most cost-effective manner? (Select TWO.)
- Create an S3 Lifecycle rule to transition the alignment files to S3 Standard-Infrequent Access (S3 Standard-IA) after ` days`, and expire the files after ` days`Cevap
- BCreate an S3 Lifecycle rule to transition the alignment files to S3 Standard-Infrequent Access (S3 Standard-IA) after ` days`, and expire the files after ` days`
- Create an S3 Lifecycle rule to transition the variant call files to S3 Glacier Flexible Retrieval after ` days`Cevap
- DCreate an S3 Lifecycle rule to transition the variant call files to S3 Standard-Infrequent Access (S3 Standard-IA) after ` days`
- ECreate an S3 Lifecycle rule to transition the variant call files to S3 Glacier Deep Archive after ` days`
Cevap
The most cost-effective actions are: transition the alignment files to S3 Standard-IA after ` days` and expire them after ` days`; and transition the variant call files to S3 Glacier Flexible Retrieval after ` days`.
Transitioning the alignment files to S3 Standard-IA after ` days` and deleting them after ` days` is optimal because the files stay in S3 Standard-IA for ` days` (exceeding the `-day` minimum storage duration requirement), and their large size (` MB`) avoids any minimum billing size penalties. Transitioning the variant call files to S3 Glacier Flexible Retrieval after ` days` is optimal because their size (` KB`) exceeds Glacier's ` KB` minimum billing size, and Glacier Flexible Retrieval's Expedited retrieval option recovers files in ` to minutes`, meeting the requirement to access data within minutes.
Adım Adım Çözüm
Anahtar Kavram
Aligning S3 Object sizes and lifecycle durations with the minimum billing sizes and minimum storage periods of S3 storage classes to avoid unexpected fees.