hello-stephen opened a new pull request, #65136: URL: https://github.com/apache/doris/pull/65136
## Problem Pipeline runs produce ~5GB of FE audit log (`fe.audit.log`). The default `log_roll_size_mb` is 1024 (1 GB), which means each individual audit log file can grow up to 1GB before rolling. ## Root Cause `log_roll_size_mb` controls the roll size for both `fe.log` and `fe.audit.log` via `Log4jConfig.java`. There is no separate config for audit log roll size — the same value feeds into both `SizeBasedTriggeringPolicy` directives. ## Fix Set `log_roll_size_mb = 100` (100 MB) in all 9 pipeline FE config files under `regression-test/pipeline/`: - `external/conf/fe.conf` - `nonConcurrent/conf/fe.conf` - `p0/conf/fe.conf` - `p1/conf/fe.conf` - `cloud_p0/conf/fe_custom.conf` - `cloud_p1/conf/fe_custom.conf` - `vault_p0/conf/fe_custom.conf` - `performance/conf/fe_custom.conf` - `performance/clickbench/conf/fe_custom.conf` 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
