@@ -5211,18 +5211,24 @@ WiredTiger Parameters
5211
5211
5212
5212
|mongod-only|
5213
5213
5214
+ *Type*: integer
5215
+
5216
+ *Default*: 128
5217
+
5214
5218
Starting in MongoDB 7.0, this parameter is available for all storage
5215
5219
engines. In earlier versions, this parameter is available for the
5216
5220
WiredTiger storage engine only.
5217
5221
5218
5222
Specify the maximum number of concurrent read transactions (read tickets)
5219
5223
allowed into the storage engine.
5220
5224
5221
- .. include:: /includes/fact-read-write-concurrency-algorithm.rst
5225
+ .. |wtparam| replace:: ``wiredTigerConcurrentReadTransactions``
5226
+
5227
+ .. include:: /includes/fact-concurrent-read-write-dynamic-behavior.rst
5222
5228
5223
5229
.. code-block:: javascript
5224
5230
5225
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentReadTransactions: <num > } )
5231
+ db.adminCommand( { setParameter: 1, wiredTigerConcurrentReadTransactions: <int > } )
5226
5232
5227
5233
.. seealso::
5228
5234
@@ -5234,18 +5240,28 @@ WiredTiger Parameters
5234
5240
5235
5241
|mongod-only|
5236
5242
5243
+ *Type*: integer
5244
+
5237
5245
Starting in MongoDB 7.0, this parameter is available for all storage
5238
5246
engines. In earlier versions, this parameter is available for the
5239
5247
WiredTiger storage engine only.
5240
5248
5241
5249
Specify the maximum number of concurrent write transactions allowed
5242
5250
into the WiredTiger storage engine.
5243
5251
5244
- .. include:: /includes/fact-read-write-concurrency-algorithm.rst
5252
+ By default, MongoDB sets ``wiredTigerConcurrentWriteTransactions`` to
5253
+ whichever value is higher:
5254
+
5255
+ - Number of cores on the machine running MongoDB
5256
+ - 4
5257
+
5258
+ .. |wtparam| replace:: ``wiredTigerConcurrentWriteTransactions``
5259
+
5260
+ .. include:: /includes/fact-concurrent-read-write-dynamic-behavior.rst
5245
5261
5246
5262
.. code-block:: javascript
5247
5263
5248
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentWriteTransactions: <num > } )
5264
+ db.adminCommand( { setParameter: 1, wiredTigerConcurrentWriteTransactions: <int > } )
5249
5265
5250
5266
.. seealso::
5251
5267
0 commit comments