summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/dist/api_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/dist/api_data.py')
-rw-r--r--src/third_party/wiredtiger/dist/api_data.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/dist/api_data.py b/src/third_party/wiredtiger/dist/api_data.py
index 13d47d72d07..6908a52f5e0 100644
--- a/src/third_party/wiredtiger/dist/api_data.py
+++ b/src/third_party/wiredtiger/dist/api_data.py
@@ -519,6 +519,17 @@ connection_runtime_config = [
interval in seconds at which to check for files that are
inactive and close them''', min=1, max=100000),
]),
+ Config('io_capacity', '', r'''
+ control how many bytes per second are written and read. Exceeding
+ the capacity results in throttling.''',
+ type='category', subconfig=[
+ Config('total', '0', r'''
+ number of bytes per second available to all subsystems in total.
+ When set, decisions about what subsystems are throttled, and in
+ what proportion, are made internally. The minimum non-zero setting
+ is 1MB.''',
+ min='0', max='1TB'),
+ ]),
Config('lsm_manager', '', r'''
configure database wide options for LSM tree management. The LSM
manager is started automatically the first time an LSM tree is opened.