@@ -4439,6 +4439,50 @@ Storage Parameters
4439
4439
4440
4440
:parameter:`processUmask` is not available on Windows systems.
4441
4441
4442
+ .. parameter:: storageEngineConcurrentReadTransactions
4443
+
4444
+ |mongod-only|
4445
+
4446
+ .. versionchanged:: 6.0
4447
+
4448
+ The ``wiredTigerConcurrentReadTransactions`` parameter was renamed to
4449
+ ``storageEngineConcurrentReadTransactions``.
4450
+
4451
+ Available for the WiredTiger storage engine only.
4452
+
4453
+ Specify the maximum number of concurrent read transactions allowed
4454
+ into the WiredTiger storage engine.
4455
+
4456
+ .. code-block:: javascript
4457
+
4458
+ db.adminCommand( { setParameter: 1, storageEngineConcurrentReadTransactions: <num> } )
4459
+
4460
+ .. seealso::
4461
+
4462
+ :serverstatus:`wiredTiger.concurrentTransactions`
4463
+
4464
+ .. parameter:: storageEngineConcurrentWriteTransactions
4465
+
4466
+ |mongod-only|
4467
+
4468
+ .. versionchanged:: 6.0
4469
+
4470
+ The ``wiredTigerConcurrentReadTransactions`` parameter was renamed to
4471
+ ``storageEngineConcurrentReadTransactions``.
4472
+
4473
+ Available for the WiredTiger storage engine only.
4474
+
4475
+ Specify the maximum number of concurrent write transactions allowed
4476
+ into the WiredTiger storage engine.
4477
+
4478
+ .. code-block:: javascript
4479
+
4480
+ db.adminCommand( { setParameter: 1, storageEngineConcurrentWriteTransactions: <num> } )
4481
+
4482
+ .. seealso::
4483
+
4484
+ :serverstatus:`wiredTiger.concurrentTransactions`
4485
+
4442
4486
.. parameter:: syncdelay
4443
4487
4444
4488
|mongod-only|
@@ -4468,7 +4512,6 @@ WiredTiger Parameters
4468
4512
4469
4513
.. note:: Deprecated in MongoDB 4.4
4470
4514
4471
-
4472
4515
MongoDB deprecates the ``wiredTigerMaxCacheOverflowSizeGB``
4473
4516
parameter. The parameter has no effect starting in MongoDB 4.4.
4474
4517
@@ -4502,7 +4545,7 @@ WiredTiger Parameters
4502
4545
fatal assertion. You can clear the :file:`WiredTigerLAS.wt`
4503
4546
file and restart :binary:`~bin.mongod`.
4504
4547
4505
- You can only set this parameter during runtime using the
4548
+ You can only set this parameter during run time using the
4506
4549
:dbcommand:`setParameter` database command:
4507
4550
4508
4551
.. code-block:: javascript
@@ -4515,40 +4558,6 @@ WiredTiger Parameters
4515
4558
4516
4559
.. versionadded:: 4.2.1
4517
4560
4518
- .. parameter:: wiredTigerConcurrentReadTransactions
4519
-
4520
- |mongod-only|
4521
-
4522
- Available for the WiredTiger storage engine only.
4523
-
4524
- Specify the maximum number of concurrent read transactions allowed
4525
- into the WiredTiger storage engine.
4526
-
4527
- .. code-block:: javascript
4528
-
4529
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentReadTransactions: <num> } )
4530
-
4531
- .. seealso::
4532
-
4533
- :serverstatus:`wiredTiger.concurrentTransactions`
4534
-
4535
- .. parameter:: wiredTigerConcurrentWriteTransactions
4536
-
4537
- |mongod-only|
4538
-
4539
- Available for the WiredTiger storage engine only.
4540
-
4541
- Specify the maximum number of concurrent write transactions allowed
4542
- into the WiredTiger storage engine.
4543
-
4544
- .. code-block:: javascript
4545
-
4546
- db.adminCommand( { setParameter: 1, wiredTigerConcurrentWriteTransactions: <num> } )
4547
-
4548
- .. seealso::
4549
-
4550
- :serverstatus:`wiredTiger.concurrentTransactions`
4551
-
4552
4561
.. parameter:: wiredTigerEngineRuntimeConfig
4553
4562
4554
4563
|mongod-only|
0 commit comments