Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Database replication can be configured as push (publisher initiates) or pull (subscriber initiates). This question evaluates whether pull replication tends to be less disruptive by letting each site choose when to fetch changes.
Given Data / Assumptions:
Concept / Approach:
In pull replication, the subscriber controls when to synchronize, reducing unexpected contention and allowing alignment with local off-peak hours. This contrasts with push replication, where the publisher pushes changes on its timetable, potentially interrupting subscribers during busy periods. While details depend on platform, the general operational effect is that pull is more subscriber-friendly and can be less disruptive.
Step-by-Step Solution:
Verification / Alternative check:
Observe system metrics before and after switching from push to pull on busy subscribers; reduced locking, CPU spikes, or I/O contention during business hours confirms the benefit.
Why Other Options Are Wrong:
Common Pitfalls:
Allowing excessive latency that violates freshness requirements, or misconfiguring agent credentials/tokens so pulls fail silently. Implement monitoring and alerts.
Final Answer:
Correct
Discussion & Comments