- Reference >
mongoShell Methods >- Sharding Methods >
- sh.startBalancer()
sh.startBalancer()¶
On this page
Definition¶
-
sh.startBalancer(timeout, interval)¶ Starts the balancer in a sharded cluster.
Important
You can only run
sh.startBalancer()on amongosinstance.sh.startBalancer()errors if run onmongodinstance.Changed in version 3.4: Beginning in MongoDB 3.4, the method does not wait for balancing to start. In earlier versions, the method waited for the balancing to initiate.
Parameter Type Description timeoutinteger Optional. Time limit for enabling 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 time to wait for the balancing round to start.intervalinteger Optional. The frequency (in milliseconds) at which to check if a balancing round has started.
Changed in version 3.4: Only applicable when using version 3.4
mongoshell with earlier version sharded clusters.sThe
mongoshell methodsh.startBalanceris a wrapper around thebalancerStartcommand, introduced in 3.4.