A financial firm needs to back up its daily transaction logs to AWS. The backups must be stored in a highly durable manner across multiple Availability Zones, and they must be immediately accessible for the first 30 days. For compliance, these backups must be replicated to a secondary AWS Region. After 30 days, the backups are rarely accessed but must be retained for 7 years. Which TWO actions should a solutions architect combine to meet these requirements?
- Store the daily backups in an Amazon S3 bucket, and configure Amazon S3 Cross-Region Replication (CRR) to copy them to a bucket in a secondary AWS Region.Answer
- Configure an Amazon S3 Lifecycle policy to transition the backup objects in both buckets to Amazon S3 Glacier Flexible Retrieval after 30 days.Answer
- CStore the daily backups in Amazon S3 Glacier Flexible Retrieval from day one to minimize initial storage costs.
- DStore the backups on Amazon EBS gp3 volumes and enable EBS Multi-Attach to share the backup files across multiple EC2 instances in different regions.
- EConfigure an Amazon S3 Lifecycle policy to transition the backup objects to Amazon S3 Standard-IA after 5 days to reduce costs.
Answer
Storing the daily backups in an Amazon S3 bucket with Cross-Region Replication (CRR) enabled, and configuring an S3 Lifecycle policy to transition the backup objects to Amazon S3 Glacier Flexible Retrieval after 30 days.
Storing the daily backups in Amazon S3 ensures the data is replicated across multiple Availability Zones, providing high resilience and immediate retrieval. Cross-Region Replication (CRR) automates the replication of these backups to a secondary AWS Region for disaster recovery and compliance. Finally, an Amazon S3 Lifecycle policy configured to transition the backups to Amazon S3 Glacier Flexible Retrieval after 30 days minimizes long-term storage costs while complying with the 7-year retention period, as the data is rarely accessed after the initial month.
Step-by-Step Solution
Key Concept
Leveraging Amazon S3 features such as Cross-Region Replication (CRR) and Lifecycle policies to build resilient, highly available, and cost-effective storage architectures.