Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Quartz current executing job when Tomcat is killed

Something i am not clear on. Say i have jobs randomly scheduled throughout the day and each job takes 30 minutes to run. Say i have five of these jobs running and Tomcat gets killed. Do the jobs restart when i start Tomcat with my application, or are the currently running jobs lost because they already fired?

like image 452
user671731 Avatar asked Oct 02 '13 14:10

user671731


1 Answers

Short answer, by default, currently running Jobs are considered fired and are not recovered

..but you can set requestRecovery property when you build a Job (JobDetail) to tell Quartz to recover that running Jobs in case of crash a.k.a. "hard shutdown".

Quoting the official documentation here on the bottom of the page:

RequestsRecovery - if a job "requests recovery", and it is executing during the time of a 'hard shutdown' of the scheduler (i.e. the process it is running within crashes, or the machine is shut off), then it is re-executed when the scheduler is started again. In this case, the JobExecutionContext.isRecovering() method will return true.

So you can do for example:

import static org.quartz.JobBuilder.*;

...

JobDetail job = newJob(MyJob.class)
           .withIdentity("myJob", "group1")
           .requestRecovery(true) //This is the guy!
           .build();

...
like image 65
zerologiko Avatar answered Oct 20 '22 16:10

zerologiko