-
Notifications
You must be signed in to change notification settings - Fork 478
Oplog Progress File
lovett89 edited this page Nov 10, 2014
·
9 revisions
The oplog progress file keeps track of the latest oplog entry seen for each replica set to which Mongo Connector is connected.
The exact format of this file depends on MongoDB's toplogy. For a single replica set, the format is:
["oplog name", timestamp]
For a sharded cluster, there is one such entry for each replica set shard:
[["oplog 1 name", timestamp 1], ["oplog 2 name", timestamp 2], ...]
The oplog progress file is created as the final step of Mongo Connector's initialization and happens with or without a collection dump. The progress file is updated thereafter at the following times:
// TODO