-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathsh.moveCollection.txt
102 lines (65 loc) · 1.91 KB
/
sh.moveCollection.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
===================
sh.moveCollection()
===================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. method:: sh.moveCollection(namespace, toShard)
.. |mc| replace:: ``sh.moveCollection()``
.. |sc| replace:: :method:`sh.shardCollection()`
.. |rsc| replace:: :method:`sh.reshardCollection()`
.. include:: /includes/mc-description.rst
.. |dbcommand| replace:: :dbcommand:`moveCollection` command
.. include:: /includes/fact-mongosh-shell-method-alt.rst
Syntax
------
``sh.moveCollection()`` has the following syntax:
.. code-block:: javascript
sh.moveCollection( "<namespace>", "<toShard>" )
Parameters
~~~~~~~~~~
``sh.moveCollection()`` takes the following parameters:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``namespace``
- string
- Database and name of the collection to move.
* - ``toShard``
- string
- ID of the recipient shard.
Compatibility
-------------
.. |command| replace:: method
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. note::
This command is not available on the Atlas Shared Tier.
.. include:: /includes/fact-environments-onprem-only.rst
.. _moveCollection-method-considerations:
Considerations
--------------
.. include:: /includes/mc-considerations.rst
.. _moveCollection-method-reqs:
Requirements
------------
.. include:: /includes/mc-reqs.rst
Examples
--------
This example moves an unsharded collection named ``inventory`` on the
``app`` database to the ``shard02`` shard.
.. code-block:: javascript
sh.moveCollection( "app.inventory", "shard02" )
.. include:: /includes/mc-sh-status.rst
Learn More
----------
- :dbcommand:`moveCollection`
- :ref:`moveable-collections`