@@ -6,9 +6,9 @@ moveChunk
66
77.. dbcommand:: moveChunk
88
9- :dbcommand:`moveChunk` is an internal command that moves
10- :term:`chunks <chunk>` between :term:`shards <shard>`. The command
11- has the following prototype form:
9+ :dbcommand:`moveChunk` is an internal administrative command that
10+ moves :term:`chunks <chunk>` between :term:`shards <shard>`. The
11+ command has the following prototype form:
1212
1313 .. code-block:: javascript
1414
@@ -18,25 +18,23 @@ moveChunk
1818 <options> } )
1919
2020 :param command moveChunk: The name of the :term:`collection` which
21- the :term:`chunk` exists. The
22- collection's full namespace must be
23- given, including the database name, for
24- example: ``"test.blog.posts"``.
21+ the :term:`chunk` exists. Specify the
22+ collection's full namespace, including
23+ the database name.
2524
26- :param find: A query expression that specifies a document of the
27- chunk to be moved, for example: ``{ author: "eliot"
28- }``. The query does not have to be related to the
29- :term:`shard key`.
25+ :param find: A query expression that will select a document within
26+ the chunk you wish to move. The query need not specify
27+ the :term:`shard key`.
3028
31- :param to: The shard ID where the chunk will be moved to, for
32- example: ``"shard1"`` .
29+ :param to: The identifier of the shard, that you want to migrate the
30+ chunk to .
3331
3432 :param _secondaryThrottle: Optional. Set to ``false`` by
3533 default. Provides :ref:`write concern
3634 <write-concern>` support for chunk
3735 migrations.
3836
39- If ``_secondaryThrottle`` is set to ``true``, during chunk
37+ If you set ``_secondaryThrottle`` to ``true``, during chunk
4038 migrations when a :term:`shard` hosted by a :term:`replica set`,
4139 the :program:`mongod` will wait until the :term:`secondary` members
4240 replicate the migration operations continuing to migrate chunk
@@ -63,11 +61,9 @@ moveChunk
6361
6462 .. note::
6563
66- The :dbcommand:`moveChunk` command should be used in special circumstances
64+ Only use the :dbcommand:`moveChunk` in special circumstances
6765 such as preparing your :term:`shard cluster` for an initial
68- ingestion of data.
69-
70- .. seealso:: ":ref:`Create chunk <sharding-administration-create-chunks>`"
71-
66+ ingestion of data, or a large bulk import operation. See
67+ :ref:`sharding-administration-create-chunks` for more information.
7268
7369 .. admin-only
0 commit comments