This is an automated email from the ASF dual-hosted git repository. gavinchou pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new ef18747deed [improve](cloud-mow)Make some mow calculating delete bitmap config more reasonable (#46750) ef18747deed is described below commit ef18747deed49a06245a13617419d284f7df8590 Author: huanghaibin <huanghai...@selectdb.com> AuthorDate: Tue Jan 14 19:20:37 2025 +0800 [improve](cloud-mow)Make some mow calculating delete bitmap config more reasonable (#46750) --- 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 29158c56bb5..a1953b33fc8 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -867,8 +867,8 @@ DEFINE_Int64(delete_bitmap_agg_cache_capacity, "104857600"); // The default delete bitmap cache is set to 100MB, // which can be insufficient and cause performance issues when the amount of user data is large. // To mitigate the problem of an inadequate cache, -// we will take the larger of 0.5% of the total memory and 100MB as the delete bitmap cache size. -DEFINE_String(delete_bitmap_dynamic_agg_cache_limit, "0.5%"); +// we will take the larger of 1.0% of the total memory and 100MB as the delete bitmap cache size. +DEFINE_String(delete_bitmap_dynamic_agg_cache_limit, "1.0%"); DEFINE_mInt32(delete_bitmap_agg_cache_stale_sweep_time_sec, "1800"); // reference https://github.com/edenhill/librdkafka/blob/master/INTRODUCTION.md#broker-version-compatibility --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org