- Reference >
- Database Commands >
- Sharding Commands >
- commitReshardCollection
commitReshardCollection¶
On this page
Definition¶
-
commitReshardCollection
¶ New in version 5.0.
During a resharding operation, MongoDB does not block writes until the estimated duration to complete the resharding operation is below two seconds.
If the current estimate is above two seconds but the time frame is acceptable to you, you can finish resharding faster. The
commitReshardCollection
command blocks writes early and forces the resharding operation to complete.
Syntax¶
The command has the following syntax:
The mongosh
provides a wrapper method
sh.commitReshardCollection()
.
Example¶
Commit a Resharding Operation¶
The following command forces the resharding
operation on the sales.orders
to block writes
and complete:
See also