Skip to content

DOCS-9127: clarifies that arbs make for uneven num of voting members #2739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
14 changes: 7 additions & 7 deletions source/core/replica-set-arbiter.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Replica Set Arbiter
An arbiter does **not** have a copy of data set and **cannot** become
a primary. Replica sets may have arbiters to add a vote in
:ref:`elections of for primary <replica-set-elections>`. Arbiters
*always* have exactly ``1`` vote election, and thus
allow replica sets to have an uneven number of members, without the
overhead of a member that replicates data.
*always* have exactly ``1`` election vote, and thus
allow replica sets to have an uneven number of voting members without the
overhead of an additional member that replicates data.

.. important:: Do not run an arbiter on systems that also host the
primary or the secondary members of the replica set.

Only add an arbiter to sets with even numbers of members. If you add
an arbiter to a set with an odd number of members, the set may suffer
from tied :term:`elections <election>`. To add an arbiter, see
:doc:`/tutorial/add-replica-set-arbiter`.
Only add an arbiter to sets with even numbers of voting members. If you
add an arbiter to a set with an odd number of voting members, the set
may suffer from tied :term:`elections <election>`. To add an arbiter,
see :doc:`/tutorial/add-replica-set-arbiter`.

.. end-content

Expand Down