DOP-C02 · Question #42
Your system uses a multi-master, multi-region DynamoDB configuration spanning two regions to achieve high availablity. For the first time since launching your system, one of the AWS Regions in which…
The correct answer is C. The system did not include repair logic and request replay buffering logic for post-failure, to re-. When using multi-region DynamoDB systems, it is of paramount importance to make sure that all requests made to one Region are replicated to the other. Under normal operation, the system in question would correctly perform write replays into the other Region. If a whole Region…
Question
Your system uses a multi-master, multi-region DynamoDB configuration spanning two regions to achieve high availablity. For the first time since launching your system, one of the AWS Regions in which you operate over went down for 3 hours, and the failover worked correctly. However, after recovery, your users are experiencing strange bugs, in which users on different sides of the globe see different data. What is a likely design issue that was not accounted for when launching?
Options
- AThe system does not have Lambda Functor Repair Automatons, to perform table scans and
- BThe system did not implement DynamoDB Table Defragmentation for restoring partition
- CThe system did not include repair logic and request replay buffering logic for post-failure, to re-
- DThe system did not use DynamoDB Consistent Read requests, so the requests in different areas
How the community answered
(28 responses)- A18% (5)
- B7% (2)
- C64% (18)
- D11% (3)
Explanation
When using multi-region DynamoDB systems, it is of paramount importance to make sure that all requests made to one Region are replicated to the other. Under normal operation, the system in question would correctly perform write replays into the other Region. If a whole Region went down, the system would be unable to perform these writes for the period of downtime. Without buffering write requests somehow, there would be no way for the system to replay dropped cross- region writes, and the requests would be serviced differently depending on the Region from which they were served after recovery.
Topics
Community Discussion
No community discussion yet for this question.