-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCSP-34743 7.0 new concurrent read/write behavior (#7046)
* DOCSP-34743 adding dynamic concurrency info * DOCSP-34743 adding dynamic concurrency info * DOCSP-34743 adding dynamic concurrency info * DOCSP-34743 fixing prefix * DOCSP-34743 simplifying wording * DOCSP-34743 adding overload info * DOCSP-34743 adding overload info * DOCSP-34743 adding overload info
- Loading branch information
1 parent
547c7d3
commit a137db9
Showing
4 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Starting in version 7.0, MongoDB uses a default algorithm to dynamically | ||
adjust the maximum number of concurrent storage engine transactions | ||
(read and write tickets). The dynamic concurrent storage engine | ||
transaction algirithm optimizes database throughput during cluster | ||
overload. The maximum number of concurrent storage engine transactions | ||
(read and write tickets) never exceeds 128 read tickets and 128 | ||
write tickets and may differ across nodes in a cluster. The maximum | ||
number of read tickets and write tickets within a single node are always | ||
equal. | ||
|
||
To specify a maximum number of read and write transactions (read and | ||
write tickets) that the dynamic maximum can not exceed, use | ||
:parameter:`storageEngineConcurrentReadTransactions` and | ||
:parameter:`storageEngineConcurrentWriteTransactions`. | ||
|
||
If you want to disable the dynamic concurrent storage engine | ||
transactions algorithm, file a support request to work with a MongoDB | ||
Technical Services Engineer. |