morningman commented on code in PR #27703: URL: https://github.com/apache/doris/pull/27703#discussion_r1413330518
########## fe/fe-core/src/main/java/org/apache/doris/job/scheduler/JobScheduler.java: ########## @@ -68,6 +69,11 @@ public JobScheduler(Map<Long, T> jobMap) { */ private static final long BATCH_SCHEDULER_INTERVAL_MILLI_SECONDS = BATCH_SCHEDULER_INTERVAL_SECONDS * 1000L; + /** + * Finished job will be cleared after 24 hours + */ + private static final long MAX_JOB_LIVE_TIME_MS = 24 * 60 * 60 * 1000L; Review Comment: Better be a FE config -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org