exam questions

Exam AWS Certified Solutions Architect - Professional All Questions

View all questions & answers for the AWS Certified Solutions Architect - Professional exam

Exam AWS Certified Solutions Architect - Professional topic 1 question 462 discussion

A company currently uses Amazon EBS and Amazon RDS for storage purposes. The company intends to use a pilot light approach for disaster recovery in a different AWS Region. The company has an RTO of 6 hours and an RPO of 24 hours.
Which solution would achieve the requirements with MINIMAL cost?

  • A. Use AWS Lambda to create daily EBS and RDS snapshots, and copy them to the disaster recovery region. Use Amazon Route 53 with active-passive failover configuration. Use Amazon EC2 in an Auto Scaling group with the capacity set to 0 in the disaster recovery region.
  • B. Use AWS Lambda to create daily EBS and RDS snapshots, and copy them to the disaster recovery region. Use Amazon Route 53 with active-active failover configuration. Use Amazon EC2 in an Auto Scaling group configured in the same way as in the primary region.
  • C. Use Amazon ECS to handle long-running tasks to create daily EBS and RDS snapshots, and copy to the disaster recovery region. Use Amazon Route 53 with active-passive failover configuration. Use Amazon EC2 in an Auto Scaling group with the capacity set to 0 in the disaster recovery region.
  • D. Use EBS and RDS cross-region snapshot copy capability to create snapshots in the disaster recovery region. Use Amazon Route 53 with active-active failover configuration. Use Amazon EC2 in an Auto Scaling group with the capacity set to 0 in the disaster recovery region.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
donathon
Highly Voted 3 years, 8 months ago
A B\D: Too costly and not pilot light. C: ECS should not be used.
upvoted 23 times
TiredDad
3 years, 7 months ago
Depending on the Amazon Regions involved and the amount of data to be copied, a cross-Region snapshot copy can take hours to complete. https://docs.amazonaws.cn/en_us/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html
upvoted 1 times
...
amithbti416
3 years, 7 months ago
https://aws.amazon.com/blogs/database/cross-region-automatic-disaster-recovery-on-amazon-rds-for-oracle-database-using-db-snapshots-and-aws-lambda/
upvoted 1 times
...
PacoDerek
3 years, 8 months ago
D sorry, this time may be u and Moon were wrong. EBS and RDS both support CRR. https://amazonaws-china.com/about-aws/whats-new/2013/06/11/amazon-announces-faster-cross-region-ebs-snapshot-copy/ BTW, no matter how, using Lambda or ECS , bring extra fee, and there is no way to copy snapshot to another region since Lambda&ECS can not span across region
upvoted 7 times
easytoo
3 years, 8 months ago
Hi PacoDerek you can use Lambda to copy snapshots across regions. https://stackoverflow.com/questions/41726536/aws-lambda-copy-ec2-snapshot-automatically-between-regions
upvoted 3 times
easytoo
3 years, 8 months ago
https://stackoverflow.com/questions/58922949/aws-lambda-copy-monthly-snapshots-to-another-region
upvoted 2 times
...
...
Ibranthovic
3 years, 8 months ago
So you are prefering using Active-actice to reduce cost ? A is the right answer
upvoted 2 times
...
rb39
3 years, 5 months ago
D is wrong - it implies active-active so both environments are working, and pilot light means active-passive
upvoted 1 times
...
...
shammous
3 years, 7 months ago
Why ECS should not be used? ECS would be cheaper as there is a requirement for cost effectiveness. "AWS Lambda is optimized for simple and quick functions to execute. Larger and more complex functions create execution complexity (and significant execution cost) to the user. Amazon ECS, on the other hand, can be used with any reasonable size and complexity container." So ECS can better handle "long-running job" like taking RDS and EBS snapshots. So C is a more suitable answer.
upvoted 3 times
...
...
Moon
Highly Voted 3 years, 8 months ago
I would go with "A". B: it is not pilot, as it has working nodes in DR region. C: comparing Lambda to ECS snapshot job, it is better to use Lambda. D: EBS does not have auto regional replication!!
upvoted 11 times
virtual
3 years, 8 months ago
Agree with you
upvoted 1 times
...
b3llman
3 years, 7 months ago
EBS does have auto regional replication. It can be defined under Snapshot Lifecycle Policy.
upvoted 3 times
...
...
evargasbrz
Most Recent 2 years, 5 months ago
Selected Answer: A
A is the right answer D-> I think that active-actice will not reduce costs and it's not pilot light.
upvoted 2 times
...
hobokabobo
2 years, 5 months ago
Selected Answer: D
A: write unnecessary lambda seems odd and incurs costs B: again a lamda C: long jobs on ec2 even more expensive D: cross region snapshots are possible and avoid costs for lambda/ec2. I do not like the active active as it bears the unnecessary risk of two systems beeing up at the same time and datacoruption... . but it does have the benefit that with autscaling at 0 the system is down and will immediately be used as soon as it comes up. Pull the primary down and pull the other up and dns will deliver the ip of the sendary. Difference to active passiv in dns is only in case both systems are up at the same time in which case both systems will be used for name resolution. So the whole setup is active-pasive, only dns is active-active which is ok as it will use only the up of the active system.. So cheapest is indeed D. (May bear a risk of datacorruption in case of misconfigured autoscaling and both systems beeing up at the same time. But correctly configured it works)
upvoted 1 times
...
LrdKanien
2 years, 6 months ago
A is best answer due to pilot and cost.
upvoted 1 times
...
Lorrendo
2 years, 7 months ago
Selected Answer: D
It's actually D. R53 Active-Active with 0 instances on the DR region will result in a pilot-light configuration. A B and C have "daily" snapshot copy that won't meet the RPO/RTO requirements. D does not specify how often the snapshots are created/copied on the DR region, and the minimum interval is 1 hour, which will meet RPO and RTO requirements.
upvoted 2 times
...
resnef
2 years, 7 months ago
trick of the question is "pilot light", which makes A better than D
upvoted 1 times
resnef
2 years, 7 months ago
answer is A
upvoted 1 times
...
...
SVJS
2 years, 7 months ago
A. A is correct , we need active-passive failover configuration in Route 53.
upvoted 1 times
...
dmscountera
2 years, 8 months ago
Selected Answer: A
Based on all comments
upvoted 1 times
...
engmohhamed
2 years, 9 months ago
i think it is easy to implement EBS cross-region rather than lambda, actually today i use AWS backup service but "'D" answer has active-active which is not the pilot light strategy as active-active is the strategy of multi-site https://aws.amazon.com/blogs/architecture/disaster-recovery-dr-architecture-on-aws-part-i-strategies-for-recovery-in-the-cloud/ So, Answer A is best choice in this case
upvoted 1 times
...
pixepe
2 years, 9 months ago
As it's pilot light approach on backup region, anything which has active-active doesn't make sense
upvoted 2 times
...
Enigmaaaaaa
2 years, 10 months ago
Only A is correct. How D can be correct? its active-active are you going to shift traffic to an instance which does not exists? also in the question states "pilot light" this is clearly a active-passive deployment. another point is that you cannot just cross-region copy snapshots by itself you need to have a lambda or a script that will do it.
upvoted 1 times
...
KiraguJohn
2 years, 10 months ago
Why i think A is wrong...The company's RTO is six hours and its RPO is twenty-four hours. A talks about a daily backup which means once after 24 hrs. What if the system fails at 23rd hour. Will you meet RTO of 6 hours? I prefer D although its Active-Active the autoscaling is set to 0.
upvoted 2 times
...
bobsmith2000
3 years ago
Selected Answer: A
D is perfect, if it's not "active-active failover". So it's A
upvoted 1 times
...
vbal
3 years, 5 months ago
EBS & EFS don't have cross-region replication in-built; you can use AWS Backup for that.
upvoted 1 times
...
CloudChef
3 years, 6 months ago
A is correct. Pilot light.
upvoted 1 times
...
cldy
3 years, 6 months ago
A. Use AWS Lambda to create daily EBS and RDS snapshots, and copy them to the disaster recovery region. Use Amazon Route 53 with active-passive failover configuration. Use Amazon EC2 in an Auto Scaling group with the capacity set to 0 in the disaster recovery region.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...