CV0-002 · Question #253
Which of the following data replication methods provides the shortest RPO?
The correct answer is C. Synchronous. Synchronous replication provides the shortest Recovery Point Objective (RPO) because it ensures data is written to both primary and secondary locations simultaneously before acknowledging the write operation.
Question
Which of the following data replication methods provides the shortest RPO?
Options
- AAsynchronous
- BFull
- CSynchronous
- DIncremental
How the community answered
(36 responses)- A3% (1)
- B3% (1)
- C86% (31)
- D8% (3)
Why each option
Synchronous replication provides the shortest Recovery Point Objective (RPO) because it ensures data is written to both primary and secondary locations simultaneously before acknowledging the write operation.
Asynchronous replication writes data to the primary site first and then to the secondary site with a delay, which means there could be some data loss (a non-zero RPO) if the primary fails before the data is replicated.
Full replication refers to copying all data, typically as part of a backup, and does not directly describe a continuous replication method for achieving a short RPO.
Synchronous replication ensures that data is written to the secondary site immediately after being written to the primary site, making the RPO very close to zero as no data is lost between writes. This method guarantees high data consistency across replicated copies.
Incremental replication copies only the data that has changed since the last backup, which is a backup strategy and not a continuous real-time data replication method optimized for the shortest RPO.
Concept tested: Data replication RPO types
Source: https://learn.microsoft.com/en-us/azure/site-recovery/concepts-rpo-rto
Topics
Community Discussion
No community discussion yet for this question.