SG0-001 · Question #101
Which of the following data replication technologies has the GREATEST impact on an application's I/O performance to the source data?
The correct answer is A. Synchronous. Synchronous data replication imposes the greatest I/O performance impact on source data because it requires writes to be committed at both the primary and replica sites before acknowledging the I/O to the application.
Question
Which of the following data replication technologies has the GREATEST impact on an application's I/O performance to the source data?
Options
- ASynchronous
- BISL trunking
- CSemi-synchronous
- DAsynchronous
How the community answered
(30 responses)- A87% (26)
- B7% (2)
- C3% (1)
- D3% (1)
Why each option
Synchronous data replication imposes the greatest I/O performance impact on source data because it requires writes to be committed at both the primary and replica sites before acknowledging the I/O to the application.
Synchronous replication guarantees zero data loss by requiring the write operation to be successfully committed to both the primary storage and the remote replica storage before the I/O is acknowledged back to the application. This mandatory waiting period directly adds latency to every write operation at the source, thus having the greatest impact on the application's I/O performance.
ISL trunking is a networking feature used in Fibre Channel SANs to aggregate multiple links between switches for increased bandwidth and redundancy, not a data replication technology that dictates I/O performance impact.
Semi-synchronous replication, while having some impact, generally acknowledges the write sooner than full synchronous replication (e.g., once received by the target), resulting in less latency than true synchronous.
Asynchronous replication has the least impact on source I/O performance because the primary storage acknowledges the write immediately, and data is replicated to the target independently in the background.
Concept tested: Data replication performance impact
Source: https://learn.microsoft.com/en-us/windows-server/storage/storage-replica/storage-replica-overview
Topics
Community Discussion
No community discussion yet for this question.