@@ -191,18 +191,17 @@ Data
191191Your cluster must manage a significant quantity of data for sharding
192192to have an effect on your collection. The default :term:`chunk` size
193193is 64 megabytes, [#chunk-size]_ and the :ref:`balancer
194- <sharding-balancing>` will not begin moving data until the shard with
195- the greatest number of chunks has *8 more* chunks than the shard with
196- least number of chunks.
197-
198- Practically, this means that unless there is 512 megabytes of data,
199- all of the data will remain on the same shard. You can set a smaller
200- chunk size, or :ref:`manually create splits in your collection
201- <sharding-procedure-create-split>` using the :func:`sh.splitFind()` and
202- :func:`sh.splitAt()` operations in the :program:`mongo` shell.
203- Remember that the default chunk size and migration threshold
204- are explicitly configured to prevent unnecessary splitting or
205- migrations.
194+ <sharding-balancing>` will not begin moving data until the imbalance
195+ of chunks in the cluster exceeds the :ref:`migration threshold
196+ <sharding-migration-thresholds>`.
197+
198+ Practically, this means that unless your cluster has enough data,
199+ chunks will remain on the same shard. You can set a smaller chunk
200+ size, or :ref:`manually create splits in your collection
201+ <sharding-procedure-create-split>` using the :func:`sh.splitFind()`
202+ and :func:`sh.splitAt()` operations in the :program:`mongo` shell.
203+ Remember that the default chunk size and migration threshold are
204+ explicitly configured to prevent unnecessary splitting or migrations.
206205
207206While there are some exceptional situations where you may need to
208207shard a small collection of data, most of the time the additional
@@ -453,9 +452,10 @@ have on the cluster, by:
453452
454453- Only moving one chunk at a time.
455454
456- - Only initiating a balancing round if there is a difference of *more
457- than* 8 chunks between the shard with the greatest and the shard with
458- the least number of chunks.
455+ - Only initiating a balancing round when the difference in number of
456+ chunks between the shard with the greatest and the shard with the
457+ least number of chunks exceeds the :ref:`migration threshold
458+ <sharding-migration-thresholds>`.
459459
460460Additionally, it's possible to disable the balancer on a temporary
461461basis for maintenance and limit the window during which it runs to
0 commit comments