From 311ee05ec388c803d29d46023df276a22691c480 Mon Sep 17 00:00:00 2001 From: Yongqiang YANG Date: Thu, 28 Aug 2025 18:13:51 +0800 Subject: [PATCH] [chore](tablet) ignore_load_tablet_failure default to be true (#55109) --- be/src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index 34b68cfe0215a4..b555435b43f9b1 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -807,7 +807,7 @@ DEFINE_Int32(txn_map_shard_size, "1024"); DEFINE_Int32(txn_shard_size, "1024"); // Whether to continue to start be when load tablet from header failed. -DEFINE_Bool(ignore_load_tablet_failure, "false"); +DEFINE_Bool(ignore_load_tablet_failure, "true"); // Whether to continue to start be when load tablet from header failed. DEFINE_mBool(ignore_rowset_stale_unconsistent_delete, "false");