On this page本页内容
removeShard
¶Removes a shard from a sharded cluster. When you run removeShard
, MongoDB drains the shard by using the balancer to move the shard’s chunks to other shards in the cluster. Once the shard is drained, MongoDB removes the shard from the cluster.
removeShard
Operations¶Starting in MongoDB 4.4, you can have more than one removeShard
operation in progress.
In MongoDB 4.2 and earlier, removeShard
returns an error if another removeShard
operation is in progress.
If you have authorization
enabled, you must have the clusterManager
role or any role that includes the removeShard
action.
Each database in a sharded cluster has a primary shard. If the shard you want to remove is also the primary of one of the cluster’s databases, then you must manually move the databases to a new shard after migrating all data from the shard. See the movePrimary
command and the Remove Shards from an Existing Sharded Cluster for more information.
When you remove a shard in a cluster with an uneven chunk distribution, the balancer first removes the chunks from the draining shard and then balances the remaining uneven chunk distribution.
See also参阅
mongos
converts the write concern of the removeShard
command to "majority"
.
A shard removal may cause an open change stream cursor to close, and the closed change stream cursor may not be fully resumable.
From the mongo
shell, the removeShard
operation resembles the following:
Replace bristol01
with the name of the shard to remove. When you run removeShard
, the command returns with a message that resembles the following:
The balancer begins migrating (“draining”) chunks from the shard named bristol01
to other shards in the cluster. These migrations happen slowly in order to avoid placing undue load on the cluster.
The output includes the field dbsToMove
indicating the databases for which bristol01
is the primary shard. After all chunks have been drained from the shard, you must either movePrimary
for the database(s) or alternatively, drop these databases.
Note
If the shard you are removing is not the primary shard for any database, the dbsToMove
array will be empty and removeShard
can complete the migration without intervention.
If you run the command again, removeShard
returns the current status of the process. For example, if the operaton is in an ongoing
state, the command returns an output that resembles the following:
In the output, the remaining
field includes the following fields:
chunks |
Total number of chunks currently remaining on the shard. |
dbs |
Total number of databases whose primary shard is the shard. These databases are specified in the dbsToMove output field. |
jumboChunks |
Of the total number of If the After the Available starting in 4.2.2 (and 4.0.14) |
Continue checking the status of the removeShard
command (i.e. rerun the command) until the number of chunks remaining is 0
.
After all chunks have been drained from the shard, if you have dbsToMove
, you can either movePrimary
for those databases or alternatively, drop the databases (which deletes the associated data files).
After the balancer completes moving all chunks off the shard and you have handled the dbsToMove
, removeShard
can finish. Running removeShard
again returns output that resembles the following: