From 8678fcea322b107fd0730403d6cc045e109a4c37 Mon Sep 17 00:00:00 2001 From: qiye Date: Fri, 9 Aug 2024 01:38:14 +0800 Subject: [PATCH] [config](inverted index)Make inverted_index_ram_dir enable by default(#35094) (#39120) ## Proposed changes bp #35094 Co-authored-by: Luennng --- 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 e1b4404350..0289fadb71 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1039,7 +1039,7 @@ DEFINE_mBool(inverted_index_compaction_enable, "true"); // Only for debug, do not use in production DEFINE_mBool(debug_inverted_index_compaction, "false"); // index by RAM directory -DEFINE_mBool(inverted_index_ram_dir_enable, "false"); +DEFINE_mBool(inverted_index_ram_dir_enable, "true"); // use num_broadcast_buffer blocks as buffer to do broadcast DEFINE_Int32(num_broadcast_buffer, "32");