An autonomous vehicle research company stores two telemetry datasets in a single Amazon S3 bucket:
- LiDAR Point Cloud Blocks: Average file size of . These files are analyzed intensively for after upload. They must be preserved for compliance audits and can be deleted exactly after upload.
- CAN Bus Sensor Logs: Average file size of . These files are queried sporadically for the first and must be retained indefinitely for long-term machine learning training.
Which combination of actions will result in the most cost-effective storage architecture that meets the retention requirements? (Select two.)
- Configure an S3 Lifecycle rule for the LiDAR Point Cloud Blocks to transition objects to S3 Standard-Infrequent Access (S3 Standard-IA) after , and expire them after .Answer
- BConfigure an S3 Lifecycle rule for the LiDAR Point Cloud Blocks to transition objects to S3 Glacier Instant Retrieval after , and expire them after .
- Configure an S3 Lifecycle rule for the CAN Bus Sensor Logs that filters on object size (using ObjectSizeGreaterThan set to ) to transition logs to S3 Standard-IA after , leaving smaller logs in S3 Standard.Answer
- DConfigure an S3 Lifecycle rule for the CAN Bus Sensor Logs to transition all logs to S3 Standard-IA after to lower active storage costs.
- EConfigure an S3 Lifecycle rule for the CAN Bus Sensor Logs to transition all logs to S3 Intelligent-Tiering after to automatically tier them to Archive Instant Access after .
Answer
Configure an S3 Lifecycle rule to transition the large LiDAR files to S3 Standard-IA after and expire them at , and configure a separate S3 Lifecycle rule for the CAN Bus logs filtering by object size (greater than ) before transitioning them to S3 Standard-IA after .
Transitioning the LiDAR files to S3 Standard-IA after and expiring them at day results in a storage period in the IA tier. Since S3 Standard-IA has a minimum storage duration of , no early deletion penalty is applied. The large size of the LiDAR files () also makes them ideal for S3 Standard-IA. For the small CAN Bus logs (), S3 Standard-IA's minimum billing size of makes direct transitions cost-ineffective. Filtering transitions to only affect objects larger than avoids this storage charge penalty.
Step-by-Step Solution
Key Concept
Applying storage tiering lifecycle policies while accounting for minimum storage durations, early deletion penalties, and minimum object size billing constraints in Amazon S3.