This is an automated email from the ASF dual-hosted git repository. dataroaring 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 fa0f3f16817 branch-3.0: [chore](config)Clarify and Improve sys_log_roll_num Parameter Description #48442 (#48506) fa0f3f16817 is described below commit fa0f3f16817f1f211c600c354b33ab86b1e8d00a Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Mar 3 09:47:18 2025 +0800 branch-3.0: [chore](config)Clarify and Improve sys_log_roll_num Parameter Description #48442 (#48506) Cherry-picked from #48442 Co-authored-by: Calvin Kirs <guoqi...@selectdb.com> --- fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java index a541e9052e1..cda1b914041 100644 --- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java +++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java @@ -81,8 +81,11 @@ public class Config extends ConfigBase { options = {"NORMAL", "ASYNC", "BRIEF"}) public static String sys_log_mode = "ASYNC"; - @ConfField(description = {"FE 日志文件的最大数量。超过这个数量后,最老的日志文件会被删除", - "The maximum number of FE log files. After exceeding this number, the oldest log file will be deleted"}) + @ConfField(description = {"FE 在 sys_log_roll_interval (日志滚动间隔)内允许保留的最大日志文件数。" + + "默认值为 10,意味着在每个日志滚动周期内,系统最多会保留 10 个日志文件。", + "This parameter defines the maximum number of FE log files that can be retained within the " + + "sys_log_roll_interval (log roll interval). The default value is 10, which means the system" + + " will keep up to 10 log files during each log roll interval."}) public static int sys_log_roll_num = 10; @ConfField(description = { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org