A SysOps Administrator is designing a backup and recovery solution for a critical web application. The application's static media files are stored in an Amazon S3 bucket, and its transactional data is hosted on a single-node Amazon RDS for PostgreSQL DB instance.
The recovery plan has the following operational requirements:
* All static media files must be automatically copied to a secondary AWS Region for disaster recovery.
* The database must automatically fail over to a standby instance in another Availability Zone with minimal downtime if the primary instance fails.
Which combination of actions must the SysOps Administrator perform to meet these requirements? (Select TWO.)
- Enable bucket versioning on both the source and destination Amazon S3 buckets, and configure S3 Cross-Region Replication (CRR).Answer
- Modify the Amazon RDS DB instance to a Multi-AZ deployment to enable synchronous replication and automated failover.Answer
- CEnable S3 Cross-Region Replication (CRR) on the source bucket to copy objects to the destination bucket without enabling versioning on either bucket.
- DDeploy an Amazon RDS Read Replica in a different Availability Zone and configure the application's connection endpoint to target it as the primary automated failover destination.
- ECreate an AWS Backup plan with daily snapshot replication to a vault in another Availability Zone to automate database failover during a primary instance outage.
Answer
Enable bucket versioning on both the source and destination Amazon S3 buckets, configure S3 Cross-Region Replication (CRR), and modify the Amazon RDS DB instance to a Multi-AZ deployment.
To meet the disaster recovery and backup requirements, the SysOps Administrator must configure S3 Cross-Region Replication (CRR) and RDS Multi-AZ. Enabling bucket versioning on both the source and destination S3 buckets is a prerequisite for configuring S3 CRR. Converting the RDS PostgreSQL instance from Single-AZ to Multi-AZ enables synchronous replication to a standby instance in another Availability Zone and ensures automatic DNS failover with minimal downtime in the event of an outage.
Step-by-Step Solution
Key Concept
Disaster recovery and backup management using S3 replication and RDS Multi-AZ deployments.
Estimated Time:2m 0s