Disable pipeline writes in stress test (#5445)

Summary:
The tsan crash tests are failing with a data race compliant with pipelined write option. Temporarily disable it until its concurrency issue are fixed.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5445

Differential Revision: D15783824

Pulled By: maysamyabandeh

fbshipit-source-id: 413a0c3230b86f524fc7eeea2cf8e8375406e65b
This commit is contained in:
Maysam Yabandeh 2019-06-12 11:09:02 -07:00 committed by Facebook Github Bot
parent f43edff9ac
commit f9842869cf

View File

@ -37,7 +37,8 @@ default_params = {
"delpercent": 4,
"delrangepercent": 1,
"destroy_db_initially": 0,
"enable_pipelined_write": lambda: random.randint(0, 1),
# Temporarily disable it until its concurrency issue are fixed
"enable_pipelined_write": 0,
"expected_values_path": expected_values_file.name,
"flush_one_in": 1000000,
"max_background_compactions": 20,