Support pipelined write in stress/crash tests

Summary: Closes https://github.com/facebook/rocksdb/pull/4019

Differential Revision: D8508681

Pulled By: ajkr

fbshipit-source-id: 23a3c07d642386446e322b02e69cdf70d12ef009
main
Andrew Kryczka 6 years ago committed by Facebook Github Bot
parent 8585059ae0
commit 7f3a634e06
  1. 1
      tools/db_crashtest.py
  2. 3
      tools/db_stress.cc

@ -30,6 +30,7 @@ default_params = {
"compact_range_one_in": 1000000,
"delpercent": 5,
"destroy_db_initially": 0,
"enable_pipelined_write": lambda: random.randint(0, 1),
"expected_values_path": expected_values_file.name,
"max_background_compactions": 20,
"max_bytes_for_level_base": 10485760,

@ -145,6 +145,8 @@ DEFINE_int32(value_size_mult, 8,
DEFINE_int32(compaction_readahead_size, 0, "Compaction readahead size");
DEFINE_bool(enable_pipelined_write, false, "Pipeline WAL/memtable writes");
DEFINE_bool(verify_before_write, false, "Verify before write");
DEFINE_bool(histogram, false, "Print histogram of operation timings");
@ -2178,6 +2180,7 @@ class StressTest {
options_.max_subcompactions = static_cast<uint32_t>(FLAGS_subcompactions);
options_.allow_concurrent_memtable_write =
FLAGS_allow_concurrent_memtable_write;
options_.enable_pipelined_write = FLAGS_enable_pipelined_write;
options_.enable_write_thread_adaptive_yield =
FLAGS_enable_write_thread_adaptive_yield;
options_.compaction_options_universal.size_ratio =

Loading…
Cancel
Save