SAP-C02 · Question #660
A company hosts a software as a service (SaaS) solution on AWS. The solution has an Amazon API Gateway API that serves an HTTPS endpoint. The API uses AWS Lambda functions for compute. The Lambda func
The correct answer is D. Change the Aurora Serverless v1 database to a standard Aurora MySQL global database that. The solutions architect needs a cross-Region DR strategy for an Aurora Serverless v1 database with an RTO of 5 minutes and an RPO of 1 minute.
Question
A company hosts a software as a service (SaaS) solution on AWS. The solution has an Amazon API Gateway API that serves an HTTPS endpoint. The API uses AWS Lambda functions for compute. The Lambda functions store data in an Amazon Aurora Serverless v1 database. The company used the AWS Serverless Application Model (AWS SAM) to deploy the solution. The solution extends across multiple Availability Zones and has no disaster recovery (DR) plan. A solutions architect must design a DR strategy that can recover the solution in another AWS Region. The solution has an RTO of 5 minutes and an RPO of 1 minute. What should the solutions architect do to meet these requirements?
Options
- ACreate a read replica of the Aurora Serverless v1 database in the target Region. Use AWS SAM
- BChange the Aurora Serverless v1 database to a standard Aurora MySQL global database that
- CCreate an Aurora Serverless v1 DB cluster that has multiple writer instances in the target Region.
- DChange the Aurora Serverless v1 database to a standard Aurora MySQL global database that
How the community answered
(18 responses)- A22% (4)
- B11% (2)
- C6% (1)
- D61% (11)
Why each option
The solutions architect needs a cross-Region DR strategy for an Aurora Serverless v1 database with an RTO of 5 minutes and an RPO of 1 minute.
Aurora Serverless v1 does not support cross-Region read replicas, making this option technically unfeasible for meeting the cross-Region DR requirements.
Changing the Aurora Serverless v1 database to a standard Aurora MySQL global database with a secondary cluster in the target Region is the most effective solution. Aurora Global Database provides an RPO typically less than 1 second and RTO less than 1 minute in a regional outage, comfortably meeting the specified RPO of 1 minute and RTO of 5 minutes for cross-Region recovery. The AWS SAM template can then be deployed in the target Region, pointing to this replicated database.
Concept tested: Aurora Global Database for cross-Region DR
Source: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html
Community Discussion
No community discussion yet for this question.