Skip to content

Commit 65577b3

Browse files
Removed monitor replication lag
Removed monitor replication lag
1 parent ee4e585 commit 65577b3

File tree

2 files changed

+4
-32
lines changed

2 files changed

+4
-32
lines changed

src/current/v25.3/read-from-standby.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ALTER VIRTUAL CLUSTER main SET REPLICATION READ VIRTUAL CLUSTER;
4646
~~~
4747

4848
{{site.data.alerts.callout_info}}
49-
This command only works if the standby cluster's AppVC has a status of `replicating`. Use the `SHOW VIRTUAL CLUSTERS` command to check the status of the AppVC.
49+
The standby cluster's AppVC must have a status of `replicating` before you can create your ReaderVC. Use the `SHOW VIRTUAL CLUSTERS` command to check the status of the AppVC.
5050
{{site.data.alerts.end}}
5151

5252
### Check the status of your reader virtual cluster
@@ -82,26 +82,12 @@ SELECT COUNT(*) FROM customers;
8282
SELECT region, SUM(amount) FROM orders GROUP BY region;
8383
~~~
8484

85-
The results of queries on the standby cluster reflect the state of the primary cluster as of a historical time that approaches the replicated time.
85+
The results of queries on the standby cluster reflect the state of the primary cluster as of a historical time that approaches the [replicated time]({% link {{ page.version.version }}/show-virtual-cluster.md %}#show-replication-status).
8686

8787
{{ site.data.alerts.callout_info }}
8888
Write operations are not permitted on the standby cluster.
8989
{{ site.data.alerts.end }}
9090

91-
### Monitor replication lag
92-
93-
Reading from the standby cluster may return slightly stale data due to replication lag between the primary cluster and the standby cluster. You can monitor replication lag to understand how current the data in the standby cluster is. To check the standby cluster's replication status:
94-
95-
{% include_cached copy-clipboard.html %}
96-
~~~ sql
97-
SHOW VIRTUAL CLUSTER REPLICATION STATUS <standby_name>;
98-
~~~
99-
100-
The output provides the following information:
101-
- the replication status of the standby cluster
102-
- the timestamp of the most recently applied event on the standby cluster
103-
- any lag relative to the primary cluster
104-
10591
## See also
10692
- [Set Up Physical Cluster Replication]({% link {{ page.version.version }}/set-up-physical-cluster-replication.md %})
10793
- [Fail Over from a Primary Cluster to a Standby Cluster]({% link {{ page.version.version }}/failover-replication.md %})

src/current/v25.4/read-from-standby.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ALTER VIRTUAL CLUSTER main SET REPLICATION READ VIRTUAL CLUSTER;
4646
~~~
4747

4848
{{site.data.alerts.callout_info}}
49-
This command only works if the standby cluster's AppVC has a status of `replicating`. Use the `SHOW VIRTUAL CLUSTERS` command to check the status of the AppVC.
49+
The standby cluster's AppVC must have a status of `replicating` before you can create your ReaderVC. Use the `SHOW VIRTUAL CLUSTERS` command to check the status of the AppVC.
5050
{{site.data.alerts.end}}
5151

5252
### Check the status of your reader virtual cluster
@@ -82,26 +82,12 @@ SELECT COUNT(*) FROM customers;
8282
SELECT region, SUM(amount) FROM orders GROUP BY region;
8383
~~~
8484

85-
The results of queries on the standby cluster reflect the state of the primary cluster as of a historical time that approaches the replicated time.
85+
The results of queries on the standby cluster reflect the state of the primary cluster as of a historical time that approaches the [replicated time]({% link {{ page.version.version }}/show-virtual-cluster.md %}#show-replication-status).
8686

8787
{{ site.data.alerts.callout_info }}
8888
Write operations are not permitted on the standby cluster.
8989
{{ site.data.alerts.end }}
9090

91-
### Monitor replication lag
92-
93-
Reading from the standby cluster may return slightly stale data due to replication lag between the primary cluster and the standby cluster. You can monitor replication lag to understand how current the data in the standby cluster is. To check the standby cluster's replication status:
94-
95-
{% include_cached copy-clipboard.html %}
96-
~~~ sql
97-
SHOW VIRTUAL CLUSTER REPLICATION STATUS <standby_name>;
98-
~~~
99-
100-
The output provides the following information:
101-
- the replication status of the standby cluster
102-
- the timestamp of the most recently applied event on the standby cluster
103-
- any lag relative to the primary cluster
104-
10591
## See also
10692
- [Set Up Physical Cluster Replication]({% link {{ page.version.version }}/set-up-physical-cluster-replication.md %})
10793
- [Fail Over from a Primary Cluster to a Standby Cluster]({% link {{ page.version.version }}/failover-replication.md %})

0 commit comments

Comments
 (0)