@@ -12,7 +12,7 @@ clusters. For a full introduction to sharding in MongoDB see
12
12
:doc:`/core/sharding`, and for a complete overview of all sharding
13
13
documentation in the MongoDB Manual, see :doc:`/sharding`. The
14
14
:doc:`/administration/sharding-architectures` document provides an
15
- overview of deployment possibilities to help deploy a shard
15
+ overview of deployment possibilities to help deploy a sharded
16
16
cluster. Finally, the :doc:`/core/sharding-internals` document
17
17
provides a more detailed introduction to sharding when troubleshooting
18
18
issues or understanding your cluster's behavior.
@@ -192,7 +192,7 @@ use the following procedure as a quick starting point:
192
192
Cluster Management
193
193
------------------
194
194
195
- Once you have a running shard cluster, you will need to maintain it.
195
+ Once you have a running sharded cluster, you will need to maintain it.
196
196
This section describes common maintenance procedure, including: how to
197
197
add and remove nodes, how to manually split chunks, and how to disable
198
198
the balancer for backups.
@@ -213,7 +213,7 @@ command:
213
213
Add a Shard to a Cluster
214
214
~~~~~~~~~~~~~~~~~~~~~~~~
215
215
216
- To add a shard to an *existing* shard cluster, use the following
216
+ To add a shard to an *existing* sharded cluster, use the following
217
217
procedure:
218
218
219
219
#. Connect to a :program:`mongos` in the cluster using the
@@ -405,7 +405,7 @@ Chunk Management
405
405
This section describes various operations on :term:`chunks <chunk>` in
406
406
:term:`sharded clusters <sharded cluster>`. MongoDB automates these
407
407
processes; however, in some cases, particularly when you're setting up
408
- a shard cluster, you may need to create and manipulate chunks
408
+ a sharded cluster, you may need to create and manipulate chunks
409
409
directly.
410
410
411
411
.. _sharding-procedure-create-split:
@@ -558,7 +558,7 @@ To create and migrate chunks manually, use the following procedure:
558
558
Modify Chunk Size
559
559
~~~~~~~~~~~~~~~~~
560
560
561
- When you initialize a shard cluster, the default chunk size is 64
561
+ When you initialize a sharded cluster, the default chunk size is 64
562
562
megabytes. This default chunk size works well for most deployments. However, if you
563
563
notice that automatic migrations are incurring a level of I/O that
564
564
your hardware cannot handle, you may want to reduce the chunk
@@ -790,7 +790,7 @@ be able to migrate chunks:
790
790
two digit hour and minute values (e.g ``HH:MM``) that describe the
791
791
beginning and end boundaries of the balancing window.
792
792
These times will be evaluated relative to the time zone of each individual
793
- :program:`mongos` instance in the shard cluster.
793
+ :program:`mongos` instance in the sharded cluster.
794
794
For instance, running the following
795
795
will force the balancer to run between 11PM and 6AM local time only:
796
796
@@ -1109,7 +1109,7 @@ default chunk size is configurable with the :setting:`chunkSize`
1109
1109
setting, these behaviors help prevent unnecessary chunk migrations,
1110
1110
which can degrade the performance of your cluster as a whole.
1111
1111
1112
- If you have just deployed a shard cluster, make sure that you have
1112
+ If you have just deployed a sharded cluster, make sure that you have
1113
1113
enough data to make sharding effective. If you do not have sufficient
1114
1114
data to create more than eight 64 megabyte chunks, then all data will
1115
1115
remain on one shard. Either lower the :ref:`chunk size
@@ -1144,7 +1144,7 @@ to correct this pattern.
1144
1144
The Cluster does not Balance
1145
1145
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1146
1146
1147
- If you have just deployed your shard cluster, you may want to
1147
+ If you have just deployed your sharded cluster, you may want to
1148
1148
consider the :ref:`troubleshooting suggestions for a new cluster where
1149
1149
data remains on a single shard <sharding-troubleshooting-not-splitting>`.
1150
1150
0 commit comments