Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/core/replication-internals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Syncing
-------

In order to remain up-to-date with the current state of the :term:`replica set`,
set members sync, or copy, :term:`oplog` entries from other members.
set members :term:`sync`, or copy, :term:`oplog` entries from other members.

When a new member joins a set or an existing member restarts, the
member waits to receive heartbeats from other members. By
Expand Down
8 changes: 8 additions & 0 deletions source/reference/glossary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -911,3 +911,11 @@ Glossary

dot notation
.. include:: /includes/fact-dot-notation.rst

sync
The :term:`replica set` operation that replicates data from the
:term:`primary` to the other members of the set that hold data.
Replication uses two types of sync: "initial sync," in which one
member clones the data from another member, and "oplog sync," in
which one member copies the oplog entries from another member and
then applies them.