This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 9dd368f8dcf0533e29edff3f946582d69a2d3dd1 Author: Kaijie Chen <[email protected]> AuthorDate: Mon Jan 22 09:58:49 2024 +0800 [config](load) set default memtable_flush_running_count_limit to 2 (#30146) --- 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 d919d7f5719..174572c5c66 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -592,7 +592,7 @@ DEFINE_mInt64(write_buffer_size, "104857600"); // max buffer size used in memtable for the aggregated table, default 400MB DEFINE_mInt64(write_buffer_size_for_agg, "419430400"); // max parallel flush task per memtable writer -DEFINE_mInt32(memtable_flush_running_count_limit, "5"); +DEFINE_mInt32(memtable_flush_running_count_limit, "2"); DEFINE_Int32(load_process_max_memory_limit_percent, "50"); // 50% --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
