summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/bench/workgen
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-12-05 16:00:08 +1100
committerLuke Chen <luke.chen@mongodb.com>2018-12-05 16:24:35 +1100
commitb74f8750d92f1dc31469261d8fbfe359ae759c29 (patch)
tree8c15b6c91170239c551f11a1e316fdb057bd83c0 /src/third_party/wiredtiger/bench/workgen
parent51ada5ef6dafa2ca29d329edb0a93fc1a91e2ad0 (diff)
downloadmongo-b74f8750d92f1dc31469261d8fbfe359ae759c29.tar.gz
Import wiredtiger: fcb59a43a44222716ddae6d94d45cdfd36b915f7 from branch mongodb-4.2
ref: 74aa2f92a9..fcb59a43a4 for: 4.1.7 WT-4192 Remove WiredTiger raw compression support WT-4319 Improvements to csuite tests WT-4331 Further extend max wait time for test_bug019.py WT-4393 Document cursor behaviour for read committed isolation WT-4410 Split 'unit-test' task to reduce Evergreen Ubuntu build variant runtime WT-4417 Make os_cache_max and os_cache_dirty_max reconfigurable WT-4421 Add a way to calculate modify operations WT-4434 Modify zstd compression level from 3 to 6 WT-4442 Add the ability to duplicate a backup cursor WT-4455 test_wt4156_metadata_salvage with HAVE_ATTACH fails on zSeries WT-4457 Add a maximum of dirty system buffers for the logging subsystem WT-4463 Reduce runtime for csuite handle locks testing WT-4464 In debug output row-store internal page keys may not format correctly WT-4469 Coverity #105148: redundant test
Diffstat (limited to 'src/third_party/wiredtiger/bench/workgen')
-rw-r--r--src/third_party/wiredtiger/bench/workgen/runner/compress_ratio.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/bench/workgen/runner/compress_ratio.py b/src/third_party/wiredtiger/bench/workgen/runner/compress_ratio.py
index 2c5552bfa5d..44320d75e29 100644
--- a/src/third_party/wiredtiger/bench/workgen/runner/compress_ratio.py
+++ b/src/third_party/wiredtiger/bench/workgen/runner/compress_ratio.py
@@ -82,11 +82,12 @@ conn_config="create,cache_size=2GB,session_max=1000,eviction=(threads_min=4,thre
table_config="allocation_size=4k,memory_page_max=10MB,prefix_compression=false,split_pct=90,leaf_page_max=32k,internal_page_max=16k,type=file"
compression_opts = {
"none" : "block_compressor=none",
- "zlib_noraw" : "block_compressor=zlib-noraw",
- "zlib_noraw_onepage" : "block_compressor=zlib-noraw,memory_page_image_max=32k",
- "zlib_noraw_tenpage" : "block_compressor=zlib-noraw,memory_page_image_max=320k",
- "zlib_raw" : "block_compressor=zlib",
+ "lz4" : "block_compressor=lz4"
"snappy" : "block_compressor=snappy"
+ "zlib" : "block_compressor=zlib",
+ "zlib_onepage" : "block_compressor=zlib,memory_page_image_max=32k",
+ "zlib_tenpage" : "block_compressor=zlib,memory_page_image_max=320k",
+ "zstd" : "block_compressor=zstd"
}
#conn_config += extensions_config(['compressors/snappy'])
conn = wiredtiger_open("WT_TEST", conn_config)