Skip to content

Commit d2866e6

Browse files
author
Andrew Leung
committed
fixing up errors
1 parent 12c707a commit d2866e6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

source/core/replication-internals.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ exceptional situations may cause secondaries lag behind further. See
3131
Also consider :ref:`oplog sizing <replica-set-oplog-sizing>` for more
3232
information about the oplog.
3333

34-
All nodes send heartbeats to all other nodes, and can import
35-
operations to into its oplog from any other node in the
36-
cluster.
34+
All members send heartbeats to all other members, and can import
35+
operations to into its oplog from any other member in the
36+
set.
3737

3838
.. In 2.0, replicas would import entries from the member lowest
3939
.. "ping," This wasn't true in 1.8 and will likely change in 2.2.
@@ -115,15 +115,15 @@ modify the configuration of an existing replica set.
115115
Elections
116116
---------
117117

118-
When you initialize a replica set for the first time, or when any
118+
When you initialize a :term:`replica set` for the first time, or when any
119119
failover occurs, an election takes place to decide which member should
120120
become :term:`primary`. A primary is the only member in the replica
121-
set that can accept write commands such as :func:`insert()
121+
set that can accept write operations including :func:`insert()
122122
<db.collection.insert()>`, :func:`update() <db.collection.update()>`,
123-
and :func:`remove() <db.collection.remove`.
123+
and :func:`remove() <db.collection.remove()>`.
124124

125125
Elections are the process replica set members use to
126-
select the primary in a cluster. Elections follow two events:
126+
select the primary in a set. Elections follow after one of two events:
127127
a primary that "steps down" or a :term:`secondary` that
128128
loses contact with a :term:`primary` member. All members have one vote
129129
in an election, and any :program:`mongod` can veto an election. A

source/reference/replica-configuration.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ Configuration Variables
178178
has can be any non-negative integer, but it is highly recommended
179179
each member has 1 or 0 votes.
180180

181-
If you need more than 7 nodes, use this setting to add additional
182-
non-voting nodes with a :data:`members[n].votes` value of ``0``.
181+
If you need more than 7 members, use this setting to add additional
182+
non-voting members with a :data:`members[n].votes` value of ``0``.
183183

184184
For most deployments and most members, use the default value,
185185
``1``, for :data:`members[n].votes`.

0 commit comments

Comments
 (0)