From ae7a79568686b3ee54825f6cee368878609ba989 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Mon, 29 Mar 2021 00:39:56 -0700 Subject: [PATCH] Disable partitioned filters in ts stress test (#8127) Summary: Currently, partitioned filter does not support user-defined timestamp. Disable it for now in ts stress test so that the contrun jobs can proceed. Pull Request resolved: https://github.com/facebook/rocksdb/pull/8127 Test Plan: make crash_test_with_ts Reviewed By: ajkr Differential Revision: D27388488 Pulled By: riversand963 fbshipit-source-id: 5ccff18121cb537bd82f2ac072cd25efb625c666 --- tools/db_crashtest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index d7e7d7055..fe93640ea 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -299,6 +299,7 @@ ts_params = { "use_blob_db": 0, "enable_compaction_filter": 0, "ingest_external_file_one_in": 0, + "partition_filters": 0, } def finalize_and_sanitize(src_params): -- GitLab