如何测量复制mongo数据库的时间?

问题描述 投票:0回答:1

我使用大量数据执行写入操作到主服务器。如何测量从主服务器上的数据到辅助服务器的时间。

mongodb
1个回答
2
投票

来自https://docs.mongodb.com/manual/tutorial/troubleshoot-replica-sets/#check-the-replication-lag

要检查复制滞后的当前长度:

在连接到主节点的mongo shell中,调用rs.printSlaveReplicationInfo()方法。

返回每个成员的syncedTo值,该值显示最后一个oplog条目写入辅助节点的时间,如以下示例所示:

source: m1.example.net:27017
    syncedTo: Thu Apr 10 2014 10:27:47 GMT-0400 (EDT)
    0 secs (0 hrs) behind the primary
source: m2.example.net:27017
    syncedTo: Thu Apr 10 2014 10:27:47 GMT-0400 (EDT)
    0 secs (0 hrs) behind the primary
© www.soinside.com 2019 - 2024. All rights reserved.