From d8eb824325e7c648ea9d576118621900db4579a6 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Tue, 24 Aug 2021 19:03:58 -0700 Subject: [PATCH] Temporarily disable block-based filter when stress testing timestamp (#8703) Summary: Current implementation does not support user-defined timestamp when block-based filter is used. Will implement the support in the future, or wait to see if block-based filter can be deprecated and removed. Pull Request resolved: https://github.com/facebook/rocksdb/pull/8703 Test Plan: make whitebox_crash_test_with_ts Reviewed By: pdillinger Differential Revision: D30528931 Pulled By: riversand963 fbshipit-source-id: 60dd74ee0a6194e69072069d8c4bd876f249f38d --- tools/db_crashtest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index 0a7447c98..3a96079bd 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -305,6 +305,7 @@ ts_params = { "use_blob_db": 0, "enable_compaction_filter": 0, "ingest_external_file_one_in": 0, + "use_block_based_filter": 0, } def finalize_and_sanitize(src_params):