A financial technology startup logs daily micro-transaction API audit payloads. The generated files average in size and are stored in an Amazon S3 Standard bucket. The files are frequently accessed during the first for compliance validation. From day to day , the access rate drops significantly, but the files must still be accessible within milliseconds if requested. After , the files are rarely accessed but must be securely archived for to meet regulatory requirements, with retrieval times of up to being acceptable. Which S3 lifecycle and storage tiering strategy is the most cost-effective for this scenario?
- Store the audit logs in Amazon S3 Standard, and configure a lifecycle policy to transition the objects directly to Amazon S3 Glacier Flexible Retrieval after .Answer
- BStore the audit logs in Amazon S3 Standard, configure a lifecycle policy to transition the objects to Amazon S3 Standard-IA on day , and then to Amazon S3 Glacier Flexible Retrieval on day .
- CStore the audit logs in Amazon S3 Standard, and configure a lifecycle policy to transition the objects to Amazon S3 Glacier Instant Retrieval on day , and then to Amazon S3 Glacier Flexible Retrieval on day .
- DStore the audit logs in Amazon S3 Standard, and configure an Amazon S3 Intelligent-Tiering lifecycle policy to automatically transition the objects to the Archive Access tier after .
Answer
Storing the audit logs in Amazon S3 Standard and transitioning them directly to Amazon S3 Glacier Flexible Retrieval after .
The correct strategy keeps the files in Amazon S3 Standard for the entire and transitions them directly to Amazon S3 Glacier Flexible Retrieval. Since the files average , they are below the minimum billable size limit for S3 Standard-IA and S3 Glacier Instant Retrieval. Storing them in Standard-IA or Glacier Instant Retrieval would lead to paying for per object. Additionally, because the intermediate access period lasts only (day to ), transitioning them to Standard-IA (which has a -day minimum duration) or Glacier Instant Retrieval (which has a -day minimum duration) before archiving them would result in early deletion/transition penalties. S3 Glacier Flexible Retrieval has a minimum billable size limit and a -day minimum storage duration, both of which are satisfied by the files and the -year retention requirement, making the direct transition the most cost-effective choice.
Step-by-Step Solution
Key Concept
Cost optimization of S3 storage lifecycles requires analyzing both object size thresholds and minimum storage durations to avoid billing penalties.