Skip to content

Commit f7551ff

Browse files
author
Bob Grabar
committed
DOCS-386 review edits
1 parent 69d3567 commit f7551ff

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

source/administration/journaling.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ MongoDB uses *write ahead logging* to an on-disk :term:`journal` to
88
guarantee :doc:`write operation </core/write-operations>` durability
99
and to provide crash resiliency. Before applying a change to the data
1010
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.
1414

1515
*Without* a journal, if :program:`mongod` exits unexpectedly, you must assume
1616
your data is in an inconsistent state, and you must run either

source/core/replication-internals.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ In order to remain up-to-date with the current state of the
260260
entries from other members. Members sync data at two different points:
261261

262262
- "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
264264
data. When a new or restored member joins or rejoins a set, the member
265265
waits to receive heartbeats from other members. By default, the member
266266
syncs from the *the closest* member of the set that is either the

source/reference/command/replSetSyncFrom.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replSetSyncFrom
1010

1111
:option host: Specifies the name and port number of the replica set member
1212
that this member replicates from. Use
13-
the ``[hostname]:[port]`` from.
13+
the ``[hostname]:[port]`` form.
1414

1515
:dbcommand:`replSetSyncFrom` allows you to explicitly configure
1616
which host the current :program:`mongod` will poll :term:`oplog`
@@ -30,7 +30,7 @@ replSetSyncFrom
3030

3131
If you attempt to replicate from a member that is more than 10 seconds
3232
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.
3434

3535
The command has the following prototype form:
3636

source/reference/glossary.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -923,3 +923,7 @@ Glossary
923923

924924
- "Replication" occurs continually after initial sync and keeps
925925
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.

0 commit comments

Comments
 (0)