- Reference >
mongoShell Methods >- Sharding Methods >
- sh.stopBalancer()
sh.stopBalancer()¶
On this page
Definition¶
-
sh.stopBalancer(timeout, interval)¶ Changed in version 3.4.
Disables the balancer in a sharded cluster. If a balancing round is in progress, the operation waits for balancing to complete before stopping the balancer.
Important
You can only run
sh.stopBalancer()on amongosinstance.sh.stopBalancer()errors if run onmongodinstance.Parameter Type Description timeoutinteger Time limit for disabling the balancer.
Defaults to 60000 milliseconds.
Changed in version 3.4: If using the 3.4
mongoshell with earlier version sharded clusters, the parameter specifies the amount of milliseconds to wait for the balancing round to stop.intervalinteger The interval (in milliseconds) at which to check if the balancing round has stopped.
Changed in version 3.4: Only applicable when using version 3.4
mongoshell with earlier version sharded clusters.The
mongoshell method is a wrapper around thebalancerStopcommand, introduced in 3.4.