Skip to content

Commit a734bae

Browse files
authored
DOCS-16066 backports DOCS-16048 to v6.0 (#3019)
1 parent 0e9396b commit a734bae

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

source/reference/parameters.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2914,6 +2914,34 @@ Sharding Parameters
29142914
``AsyncRequestsSenderUseBaton`` and always enables the performance
29152915
enhancement controlled by the parameter.
29162916

2917+
.. parameter:: balancerMigrationsThrottlingMs
2918+
2919+
.. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
2920+
2921+
*Type*: integer
2922+
2923+
*Default*: 1000
2924+
2925+
|mongod-only|
2926+
2927+
Specifies the minimum amount of time between two consecutive
2928+
balancing rounds. This allows you to throttle the balancing
2929+
rate. This parameter only takes effect on config server nodes.
2930+
2931+
This example sets ``balancerMigrationsThrottlingMs`` to 2000
2932+
milliseconds at startup:
2933+
2934+
.. code-block:: bash
2935+
2936+
mongod --setParameter balancerMigrationsThrottlingMs=2000
2937+
2938+
During runtime, you can also set the parameter with the
2939+
:dbcommand:`setParameter` command:
2940+
2941+
.. code-block:: javascript
2942+
2943+
db.adminCommand( { setParameter: 1, balancerMigrationsThrottlingMs: 2000 } )
2944+
29172945
.. parameter:: chunkDefragmentationThrottlingMS
29182946

29192947
.. versionadded:: 5.3

0 commit comments

Comments
 (0)