From b7fc9ada9e111247f84747a6d2cc3ac7943d5a4a Mon Sep 17 00:00:00 2001 From: Jay Huh Date: Sun, 2 Jun 2024 21:58:12 -0700 Subject: [PATCH] Temporarily disable multi_cf_iter in stress test (#12728) Summary: We plan to re-enable the test after fixing the test. Pull Request resolved: https://github.com/facebook/rocksdb/pull/12728 Test Plan: N/A. Disabling the test Reviewed By: hx235 Differential Revision: D58071284 Pulled By: jaykorean fbshipit-source-id: af6b45ec7654f9c7b40c36d3b59c7087e27a7af9 --- tools/db_crashtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index 166344a7d0..3bea01c5b1 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -153,7 +153,7 @@ default_params = { # use_put_entity_one_in has to be the same across invocations for verification to work, hence no lambda "use_put_entity_one_in": random.choice([0] * 7 + [1, 5, 10]), "use_attribute_group": lambda: random.randint(0, 1), - "use_multi_cf_iterator": lambda: random.randint(0, 1), + "use_multi_cf_iterator": 0, # TODO(jaykorean) - re-enable this after fixing the test # 999 -> use Bloom API "bloom_before_level": lambda: random.choice([random.randint(-1, 2), random.randint(-1, 10), 0x7fffffff - 1, 0x7fffffff]), "value_size_mult": 32,