@@ -5251,18 +5251,24 @@ WiredTiger Parameters
5251
5251
5252
5252
|mongod-only|
5253
5253
5254
+ *Type*: integer
5255
+
5256
+ *Default*: 128
5257
+
5254
5258
Starting in MongoDB 7.0, this parameter is available for all storage
5255
5259
engines. In earlier versions, this parameter is available for the
5256
5260
WiredTiger storage engine only.
5257
5261
5258
5262
Specify the maximum number of concurrent read transactions (read tickets)
5259
5263
allowed into the storage engine.
5260
5264
5261
- .. include:: /includes/fact-read-write-concurrency-algorithm.rst
5265
+ .. |wtparam| replace:: ``wiredTigerConcurrentReadTransactions``
5266
+
5267
+ .. include:: /includes/fact-concurrent-read-write-dynamic-behavior.rst
5262
5268
5263
5269
.. code-block:: javascript
5264
5270
5265
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentReadTransactions: <num > } )
5271
+ db.adminCommand( { setParameter: 1, wiredTigerConcurrentReadTransactions: <int > } )
5266
5272
5267
5273
.. seealso::
5268
5274
@@ -5274,18 +5280,28 @@ WiredTiger Parameters
5274
5280
5275
5281
|mongod-only|
5276
5282
5283
+ *Type*: integer
5284
+
5277
5285
Starting in MongoDB 7.0, this parameter is available for all storage
5278
5286
engines. In earlier versions, this parameter is available for the
5279
5287
WiredTiger storage engine only.
5280
5288
5281
5289
Specify the maximum number of concurrent write transactions allowed
5282
5290
into the WiredTiger storage engine.
5283
5291
5284
- .. include:: /includes/fact-read-write-concurrency-algorithm.rst
5292
+ By default, MongoDB sets ``wiredTigerConcurrentWriteTransactions`` to
5293
+ whichever value is higher:
5294
+
5295
+ - Number of cores on the machine running MongoDB
5296
+ - 4
5297
+
5298
+ .. |wtparam| replace:: ``wiredTigerConcurrentWriteTransactions``
5299
+
5300
+ .. include:: /includes/fact-concurrent-read-write-dynamic-behavior.rst
5285
5301
5286
5302
.. code-block:: javascript
5287
5303
5288
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentWriteTransactions: <num > } )
5304
+ db.adminCommand( { setParameter: 1, wiredTigerConcurrentWriteTransactions: <int > } )
5289
5305
5290
5306
.. seealso::
5291
5307
0 commit comments