@@ -3090,6 +3090,66 @@ Sharding Parameters
3090
3090
``AsyncRequestsSenderUseBaton`` and always enables the performance
3091
3091
enhancement controlled by the parameter.
3092
3092
3093
+ .. parameter:: autoMergerIntervalSecs
3094
+
3095
+ .. versionadded:: 7.0
3096
+
3097
+ *Type*: integer
3098
+
3099
+ *Default*: 3600
3100
+
3101
+ |mongod-only|
3102
+
3103
+ When {+auto-merge-upper+} is enabled, specifies the amount of time
3104
+ between {+auto-merge-action+} rounds, in seconds. The default value
3105
+ is 3600 seconds, or one hour.
3106
+
3107
+ ``autoMergerIntervalSecs`` can only be set on config servers.
3108
+
3109
+ This example sets ``autoMergerIntervalSecs`` to 7200 milliseconds,
3110
+ or two hours, at startup:
3111
+
3112
+ .. code-block:: bash
3113
+
3114
+ mongod --setParameter autoMergeInterval=7200
3115
+
3116
+ During run time, you can set or modify the parameter with the
3117
+ :dbcommand:`setParameter` command:
3118
+
3119
+ .. code-block:: javascript
3120
+
3121
+ db.adminCommand( { setParameter: 1, autoMergeInterval: 7200 } )
3122
+
3123
+ .. parameter:: autoMergerThrottlingMS
3124
+
3125
+ .. versionadded:: 7.0
3126
+
3127
+ *Type*: integer
3128
+
3129
+ *Default*: 15000
3130
+
3131
+ |mongod-only|
3132
+
3133
+ When {+auto-merge-upper+} is enabled, specifies the minimum amount
3134
+ time between merges initiated by the {+auto-merge-upper+} on the same
3135
+ collection, in milliseconds.
3136
+
3137
+ ``autoMergerThrottlingMS`` can only be set on config servers.
3138
+
3139
+ This example sets ``autoMergerThrottlingMS`` to 60000 milliseconds,
3140
+ or one minute, at startup:
3141
+
3142
+ .. code-block:: bash
3143
+
3144
+ mongod --setParameter autoMergerThrottlingMS=60000
3145
+
3146
+ During run time, you can set or modify the parameter with the
3147
+ :dbcommand:`setParameter` command:
3148
+
3149
+ .. code-block:: javascript
3150
+
3151
+ db.adminCommand( { setParameter: 1, autoMergerThrottlingMS: 60000 } )
3152
+
3093
3153
.. parameter:: balancerMigrationsThrottlingMs
3094
3154
3095
3155
.. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
0 commit comments