A fleet management company collects data from delivery trucks and stores it in Amazon S3. The data consists of two types of files:
* Vehicle telematics data: Millions of small JSON files averaging in size. These files are accessed frequently during the first days, and must be retained for days.
* Dashcam video recordings: Large MP4 files averaging in size. These files are accessed frequently during the first days for safety reviews, and must be archived for a total of days for compliance audits. When an audit occurs, these videos must be retrievable within minutes.
Which two storage configurations will meet these requirements at the lowest cost?
- Keep the vehicle telematics data in S3 Standard, and configure a lifecycle rule to delete the objects after days.Answer
- Configure a lifecycle rule for the dashcam video recordings to transition them to S3 Standard-IA after days, and delete them after days.Answer
- CConfigure a lifecycle rule for the vehicle telematics data to transition them to S3 Standard-IA after days, and delete them after days.
- DConfigure a lifecycle rule for the dashcam video recordings to transition them to S3 Glacier Flexible Retrieval after days, and use Standard retrieval when an audit occurs.
- ERoute the dashcam video uploads from private EC2 instances through a NAT Gateway to S3 Standard, and configure a lifecycle rule to transition them to S3 Standard-IA after days.
Answer
Keeping the vehicle telematics data in S3 Standard and deleting it after days, and configuring a lifecycle rule for the dashcam video recordings to transition them to S3 Standard-IA after days and deleting them after days.
The correct solution keeps the small telematics files in S3 Standard because their size would trigger the minimum billing penalty if transitioned to S3 Standard-IA. Conversely, the video files are large enough to avoid the minimum size penalty, and transitioning them to S3 Standard-IA after days leaves them in S3 Standard-IA for days (satisfying the -day minimum storage duration limit) while still ensuring millisecond-level retrievals.
Step-by-Step Solution
Key Concept
S3 Storage Class Analysis, billing minimums ( for S3 Standard-IA), and storage duration minimums ( days for S3 Standard-IA).
Estimated Time:2m 0s