A smart manufacturing company collects and stores operational data in a single Amazon S3 bucket. The data consists of two categories:
* IoT Sensor Telemetry: Average file size is . These files are generated continuously and analyzed in real-time. They are rarely accessed after but must be retained for a total of for compliance audits, after which they can be deleted.
* Machinery Firmware Images: Average file size is . These files are accessed frequently during the first after release and rarely thereafter. They must be retained for for rollback purposes, after which they can be deleted.
Which lifecycle configuration is the most cost-effective to meet these requirements?
- For telemetry data, create a lifecycle rule to expire objects after . For firmware images, create a lifecycle rule to transition objects to S3 Standard-Infrequent Access (S3 Standard-IA) after and expire them after .Answer
- BFor telemetry data, create a lifecycle rule to transition objects to S3 Standard-IA after and expire them after . For firmware images, create a lifecycle rule to transition objects to S3 Standard-IA after and expire them after .
- CFor telemetry data, create a lifecycle rule to expire objects after . For firmware images, create a lifecycle rule to transition objects to S3 Standard-IA after and expire them after .
- DFor telemetry data, create a lifecycle rule to transition objects to S3 Standard-IA after and expire them after . For firmware images, create a lifecycle rule to transition objects to S3 Standard-IA after and expire them after .
Answer
For telemetry data, configure a lifecycle rule to expire objects after without transitioning them. For firmware images, configure a lifecycle rule to transition them to S3 Standard-IA after and expire them after .
The correct configuration leaves telemetry files in S3 Standard for the duration of their lifecycle () and expires them directly. This avoids both the minimum billing size penalty (since their actual size is ) and the minimum storage duration penalty of S3 Standard-IA. The firmware images are large () and reside in S3 Standard-IA for after the initial of frequent access, maximizing storage savings with zero penalties.
Step-by-Step Solution
Key Concept
S3 Lifecycle Management Cost Constraints