Hello Risla,
Thank you for posting question on Microsoft Windows Forum!
Based on the issue description. Well! A six-hour replication delay between regions highly probably points to the scenarios of misconfigured Inter-Site Topology Generator (ISTG) settings, restrictive site link schedules, or a massive replication queue bottlenecking your Bridgehead servers.
The following are a few of suggested repadmin commands deemed to be useful for troubleshooting this issue.
- repadmin /replsummary which provides a matrix of all inbound and outbound replication attempts, showing the largest delta (delay) and the percentage of failures. Look for specific DCs that have a high failure rate or a delta matching your 6-hour lag.
- repadmin /queue <DC_Name> If the queue has thousands of items, the DC is communicating but cannot process changes fast enough (often due to disk I/O bottlenecks, anti-virus interference, or massive bulk updates). If the queue is empty but replication is delayed, it is a scheduling or topology issue.
- repadmin /showrepl <DC_Name> which shows every replication partner (neighbor) for each directory partition. Check the Last attempt @ <date/time> and the resulting status (e.g., was successful or a specific error code like 8453 or 1722).
- repadmin /showrepl * /errorsonly which queries all DCs in the enterprise and returns only the links that are currently failing. Note the target DC, source DC, and the Hex/Decimal error code.
- repadmin /showconn <DC_Name> displays the KCC-generated (or manually created) connection objects. Verify that inter-site connections exist and are pointing to the correct Bridgehead servers. Manually created connections (which lack the <generated> tag) often cause topology loops or orphaned paths.
- repadmin /bridgeheads Inter-site replication routes exclusively through Bridgehead servers. If a Bridgehead is down or in an error state, inter-site replication halts. Ensure the bridgeheads listed are online and hold the correct partitions.
- repadmin /kcc <DC_Name> If you suspect the topology is broken, this forces the KCC to re-evaluate site links and build new connection objects. Check the Event Viewer (Directory Service log) afterward for KCC errors.
Since your delay is specifically inter-regional, the issue frequently lies outside of standard DC health. By default, AD site links replicate every 180 minutes (3 hours). If a site link schedule restricts replication to specific off-hours, or if a single cycle is missed, a 6-hour delay is easily reached. You can view site link properties in Active Directory Sites and Services. On the other hand, if a DC was disconnected for longer than the Tombstone Lifetime (typically 180 days), it will be quarantined to prevent Lingering Objects. Event ID 1988 or 2042 in the Directory Service log will confirm this.
You can consult the following articles for further reference.
- https://learn.microsoft.com/en-us/troubleshoot/windows-server/active-directory/diagnose-replication-failures
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/replication/active-directory-replication-concepts
Hope the above information is helpful!