This is an automated email from the ASF dual-hosted git repository. dataroaring 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 f83cd72cf58 [misc](config) adjust disk resourse limit mode entrance threshold (#43779) f83cd72cf58 is described below commit f83cd72cf58fba095f32dca593be70f415a2ea42 Author: zhengyu <zhangzhen...@selectdb.com> AuthorDate: Thu Nov 14 14:50:10 2024 +0800 [misc](config) adjust disk resourse limit mode entrance threshold (#43779) File cache storage will take extra space because of file page alignment. Lower the configuration to make the disk space alert silent. --- 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 a37a006acf0..30ac5f24af3 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1020,7 +1020,7 @@ DEFINE_Int64(file_cache_each_block_size, "1048576"); // 1MB DEFINE_Bool(clear_file_cache, "false"); DEFINE_Bool(enable_file_cache_query_limit, "false"); -DEFINE_mInt32(file_cache_enter_disk_resource_limit_mode_percent, "90"); +DEFINE_mInt32(file_cache_enter_disk_resource_limit_mode_percent, "88"); DEFINE_mInt32(file_cache_exit_disk_resource_limit_mode_percent, "80"); DEFINE_mBool(enable_read_cache_file_directly, "false"); DEFINE_mBool(file_cache_enable_evict_from_other_queue_by_size, "true"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org