File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ MongoDB uses *write ahead logging* to an on-disk :term:`journal` to
8
8
guarantee :doc:`write operation </core/write-operations>` durability
9
9
and to provide crash resiliency. Before applying a change to the data
10
10
files, MongoDB writes the change operation to the journal. If MongoDB
11
- should terminate or encounter an error before it can write the
12
- data to disk , MongoDB can re-apply the write operation and maintain a
13
- consistent state.
11
+ should terminate or encounter an error before it can write the changes
12
+ from the journal to the data files , MongoDB can re-apply the write
13
+ operation and maintain a consistent state.
14
14
15
15
*Without* a journal, if :program:`mongod` exits unexpectedly, you must assume
16
16
your data is in an inconsistent state, and you must run either
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ In order to remain up-to-date with the current state of the
260
260
entries from other members. Members sync data at two different points:
261
261
262
262
- "Initial sync" occurs when MongoDB creates new databases on a new or
263
- restored member, populating the the member with the replica set's
263
+ restored member, populating the member with the replica set's
264
264
data. When a new or restored member joins or rejoins a set, the member
265
265
waits to receive heartbeats from other members. By default, the member
266
266
syncs from the *the closest* member of the set that is either the
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ replSetSyncFrom
10
10
11
11
:option host: Specifies the name and port number of the replica set member
12
12
that this member replicates from. Use
13
- the ``[hostname]:[port]`` from .
13
+ the ``[hostname]:[port]`` form .
14
14
15
15
:dbcommand:`replSetSyncFrom` allows you to explicitly configure
16
16
which host the current :program:`mongod` will poll :term:`oplog`
@@ -30,7 +30,7 @@ replSetSyncFrom
30
30
31
31
If you attempt to replicate from a member that is more than 10 seconds
32
32
behind the current member, :program:`mongod` will return and log a
33
- warning, but it * still will* replicate from such members .
33
+ warning, but it still * will* replicate from the member that is behind .
34
34
35
35
The command has the following prototype form:
36
36
Original file line number Diff line number Diff line change @@ -923,3 +923,7 @@ Glossary
923
923
924
924
- "Replication" occurs continually after initial sync and keeps
925
925
the member updated with changes to the replica set's data.
926
+
927
+ initial sync
928
+ The :term:`replica set` operation that replicates data from an
929
+ existing replica set member to a new or restored replica set member.
You can’t perform that action at this time.
0 commit comments