summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorSulabh Mahajan <sulabh.mahajan@mongodb.com>2017-03-29 15:38:35 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2017-03-29 15:38:35 +1100
commit1c41c7735b3529521b7bd34180f80584caee7f59 (patch)
tree7ff9a0eb97bd4667fd2286dae77be06a75426d17 /dist
parentd5a10d2e97853e7db6bb4c2635b97febf13607c5 (diff)
downloadmongo-1c41c7735b3529521b7bd34180f80584caee7f59.tar.gz
WT-2439 Improve page layout: keep pages more than half full (#3277)
* Changes `split_pct` to have a minimum of 50%.
Diffstat (limited to 'dist')
-rw-r--r--dist/api_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/api_data.py b/dist/api_data.py
index 1d669fa7fe0..22600dd5e29 100644
--- a/dist/api_data.py
+++ b/dist/api_data.py
@@ -295,12 +295,12 @@ file_config = format_meta + file_runtime_config + [
Config('split_deepen_per_child', '0', r'''
entries allocated per child when deepening the tree''',
type='int', undoc=True),
- Config('split_pct', '75', r'''
+ Config('split_pct', '90', r'''
the Btree page split size as a percentage of the maximum Btree
page size, that is, when a Btree page is split, it will be
split into smaller pages, where each page is the specified
percentage of the maximum Btree page size''',
- min='25', max='100'),
+ min='50', max='100'),
]
# File metadata, including both configurable and non-configurable (internal)