Topic 1 Question 297
A company uses an Amazon Aurora PostgreSQL global database that has two secondary AWS Regions. A DevOps engineer has configured the database parameter group to guarantee an RPO of 60 seconds. Write operations on the primary cluster are occasionally blocked because of the RPO setting.
The DevOps engineer needs to reduce the frequency of blocked write operations.
Which solution will meet these requirements?
Add an additional secondary cluster to the global database.
Enable write forwarding for the global database.
Remove one of the secondary clusters from the global database.
Configure synchronous replication for the global database.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: C
To reduce the frequency of blocked write operations in an Amazon Aurora PostgreSQL global database, particularly when you're using a 60-second Recovery Point Objective (RPO), the goal is to improve replication performance so that the lag between the primary cluster and its secondary regions does not exceed the 60-second threshold.
👍 4spring212024/12/17 - 正解だと思う選択肢: D
Explanation: Aurora global databases use asynchronous replication by default to provide fast cross-region replication. However, asynchronous replication can cause delays in synchronizing data between regions, and if the RPO is set too aggressively, it can cause write operations to block when replication is behind.
By configuring synchronous replication, writes to the primary region will only be acknowledged once the changes are successfully replicated to the secondary regions, reducing the likelihood of replication lag. This means that write operations will be blocked if the replication is lagging and the RPO setting is not met, but the frequency of blocked writes may be reduced because synchronous replication guarantees data consistency across regions.
👍 1youonebe2024/12/27 - 正解だと思う選択肢: B
Enabling write forwarding for an Amazon Aurora global database can be a viable solution to improve write performance and reduce the frequency of blocked write operations. Write forwarding allows secondary clusters in a global database to forward write requests to the primary cluster. This can help distribute the write load and improve the overall performance of the global database.
👍 1teo21572025/01/16
シャッフルモード