This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 45608e7aa9b [fix](config) change inverted_index_fd_number_limit_percent default value #42224 (#42426) 45608e7aa9b is described below commit 45608e7aa9b0f161e362a31e13258561177e211a Author: Kang <kxiao.ti...@gmail.com> AuthorDate: Fri Oct 25 20:05:02 2024 +0800 [fix](config) change inverted_index_fd_number_limit_percent default value #42224 (#42426) --- 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 c631068fef5..486717d9bf3 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1011,7 +1011,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, "false"); 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% // inverted index match bitmap cache size DEFINE_String(inverted_index_query_cache_limit, "10%"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org