From ed2a87db07b67ba402914d69edad5d528f2a0370 Mon Sep 17 00:00:00 2001 From: Andrew Chang Date: Wed, 5 Feb 2025 14:59:16 -0800 Subject: [PATCH] BlobDB is not compatible with secondary instances (#13371) Summary: There was a failed TSAN crash test run that involved BlobDB and secondary instances. ltamasi said that BlobDB is not compatible with secondary instances, so I have updated the crash test script accordingly. Pull Request resolved: https://github.com/facebook/rocksdb/pull/13371 Test Plan: I confirmed there were no blob-related parameters after running ``` python3 tools/db_crashtest.py --simple blackbox --test_secondary=1 ``` Reviewed By: jowlyzhang Differential Revision: D69193105 Pulled By: archang19 fbshipit-source-id: b545d7765928a385a792fc070c1d432d1c002b3d --- tools/db_crashtest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index 07044f0f2fb..d731b238ecd 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -1073,6 +1073,7 @@ def gen_cmd_params(args): if ( not args.test_best_efforts_recovery and not args.test_tiered_storage + and params.get("test_secondary", 0) == 0 and random.choice([0] * 9 + [1]) == 1 ): params.update(blob_params)