副本集方法

通过执行"db.printReplicationInfo"命令可查看到操作日志的一些基本信息,如日志大小、日志启用时间等。


示例

查看primary的oplog.rs表的元信息,如下面的代码所示:

rs1:PRIMARY>db.printReplicationInfo()
configured oplog size:47.6837158203125MB
log length start to end:1351secs(0.38hrs)
oplog first event time:Thu May 31 2012 17:49:23 GMT+0800(CST)
oplog last event time:Thu May 31 2012 18:11:54 GMT+0800(CST)
now:
Thu May 31 2012 18:21:58 GMT+0800(CST)
rs1:PRIMARY>

字段说明

  • configured oplog size:配置的oplog文件大小。
  • log length start to end:oplog日志的启用时间段。
  • oplog first event time:第一个事务日志的产生时间。
  • oplog last event time:最后一个事务日志的产生时间。
  • now:现在的时间。

副本集方法