This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new cea29acef83 [fix](config) change segment_cache_fd_percentage and inverted_index_fd_number_limit_percent default value #42224 (#42424) cea29acef83 is described below commit cea29acef83cb70f9cb5168d61c7b419100dc42b Author: Kang <kxiao.ti...@gmail.com> AuthorDate: Mon Oct 28 09:25:32 2024 +0800 [fix](config) change segment_cache_fd_percentage and inverted_index_fd_number_limit_percent default value #42224 (#42424) --- be/src/common/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index ce447777bde..27244c23279 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1048,7 +1048,7 @@ DEFINE_String(inverted_index_searcher_cache_limit, "10%"); // set `true` to enable insert searcher into cache when write inverted index data DEFINE_Bool(enable_write_index_searcher_cache, "true"); DEFINE_Bool(enable_inverted_index_cache_check_timestamp, "true"); -DEFINE_Int32(inverted_index_fd_number_limit_percent, "40"); // 40% +DEFINE_Int32(inverted_index_fd_number_limit_percent, "20"); // 20% DEFINE_Int32(inverted_index_query_cache_shards, "256"); // inverted index match bitmap cache size @@ -1097,7 +1097,7 @@ DEFINE_mInt32(schema_cache_sweep_time_sec, "100"); // max number of segment cache, default -1 for backward compatibility fd_number*2/5 DEFINE_Int32(segment_cache_capacity, "-1"); -DEFINE_Int32(segment_cache_fd_percentage, "40"); +DEFINE_Int32(segment_cache_fd_percentage, "20"); DEFINE_mInt32(estimated_mem_per_column_reader, "512"); DEFINE_Int32(segment_cache_memory_percentage, "5"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org