I'm trying to find the way how to determine whether JobExecution
obtained from JobExplorer
is actually running.
The problem is that explorer checks for job execution by running jdbc query. But is some cases (e.g. container with Spring Batch job was killed/restarted) jobs remain persisted in DB in running state, though they are orphaned and there is no processing actually running in runtime.
And simple method like
private boolean isJobRunning(String jobName) {
var activeExecutions = jobExplorer.findRunningJobExecutions(jobName);
return activeExecutions
.stream()
.anyMatch(jobExecution -> jobExecution.getStatus().isRunning());
}
doesn't work as expected.
Is there any way to find actually active jobs? Thanks in advance