[fix](statistics)Fix auto analyze remove finished job bug (#27486)

Finished job must be removed from the job list, otherwise the next batch of jobs will not be scheduled.
This commit is contained in:
Jibing-Li
2023-11-23 23:22:02 +08:00
committed by GitHub
parent eb878ad0d2
commit 8e74470db9

View File

@ -237,6 +237,7 @@ public class AnalysisManager implements Writable {
}
autoJobs.offer(job);
systemJobInfoMap.remove(info.jobId);
analysisJobIdToTaskMap.remove(info.jobId);
}
return null;
};