A financial analytics platform generates daily transaction ledger snapshots for audit validation. The platform produces approximately 50 million files monthly, with an average file size of . These files are stored in an Amazon S3 bucket. They are frequently accessed during the first 10 days after creation. From day 11 to day 25, they are accessed occasionally (less than once per week) but must remain available for immediate retrieval. After exactly 25 days, the files are no longer needed and can be safely deleted. Which storage strategy is the most cost-effective for these files?
- AConfigure an S3 Lifecycle policy to transition the files to Amazon S3 Standard-Infrequent Access (S3 Standard-IA) after 10 days, and expire the files 25 days after creation.
- BConfigure an S3 Lifecycle policy to transition the files to Amazon S3 Glacier Flexible Retrieval after 10 days, and expire the files 25 days after creation.
- Store the files in Amazon S3 Standard for the entire 25-day lifecycle, and configure an S3 Lifecycle policy to expire the files 25 days after creation.Cevap
- DConfigure an S3 Lifecycle policy to transition the files to Amazon S3 Intelligent-Tiering immediately upon creation, and configure another rule to expire the files 25 days after creation.
Cevap
Store the files in Amazon S3 Standard for the entire 25-day lifecycle, and configure an S3 Lifecycle policy to expire the files 25 days after creation.
Storing the files in Amazon S3 Standard for the entire 25 days is the most cost-effective option. The average file size () is less than the S3 Standard-IA minimum billing size of . Additionally, because the files are deleted after 25 days, transitioning them to S3 Standard-IA after 10 days would mean they spend only 15 days in that tier, which falls short of the 30-day minimum storage duration for S3 Standard-IA, triggering a penalty charge for the remaining 15 days. Finally, transitioning 50 million objects incurs transition request fees ( 500 total) which vastly exceed the storage costs ($82.25) of the raw data.
Adım Adım Çözüm
Anahtar Kavram
S3 Standard-IA and S3 Glacier storage tiering optimization constraints including minimum object sizes, minimum storage durations, and transition request costs.