Skip to content

Improves readability #872

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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Overview
--------

This document describes a procedure for taking a backup of all
components of a sharded cluster. This procedure uses file system
components in a sharded cluster. This procedure uses file system
snapshots to capture a copy of the :program:`mongod` instance. An
alternate procedure that uses :program:`mongodump` to create binary
database dumps when file-system snapshots are not available. See
Expand All @@ -25,11 +25,11 @@ Procedure
---------

In this procedure, you will stop the cluster balancer and take a backup
up of the :term:`config database`, and then take backups of each
of the :term:`config database`, and then take backups of each
shard in the cluster using a file-system snapshot tool. If you need an
exact moment-in-time snapshot of the system, you will need to stop all
application writes before taking the filesystem snapshots; otherwise
the snapshot will only approximate a moment of in time.
the snapshot will only approximate a moment in time.

For approximate point-in-time snapshots, you can improve the quality
of the backup while minimizing impact on the cluster by taking the
Expand All @@ -47,7 +47,7 @@ shard.
It is essential that you stop the balancer before creating
backups. If the balancer remains active, your resulting backups
could have duplicate data or miss some data, as :term:`chunks
<chunk>` migrate while recording backups.
<chunk>` may migrate while preforming the backup.

#. Lock one member of each replica set in each shard so that your
backups reflect the state of your database at the nearest possible
Expand Down Expand Up @@ -75,7 +75,7 @@ shard.

mongodump --db config

#. Back up the replica set members of the shards that you locked. You
#. Back up the replica set members of the shards that you have locked. You
may back up the shards in parallel. For each shard, create a
snapshot. Use the procedures in
:doc:`/tutorial/backup-databases-with-filesystem-snapshots`.
Expand Down