quartz-mongodb
quartz-mongodb copied to clipboard
A MongoDB-based store for the Quartz scheduler. This fork strives to be as feature complete as possible. Originally by MuleSoft.
In the Error Handling in Clustered Mode section the property:`org.quartz.jobStore.checkInErrorHandler.class` does not work for me. Instead I removed the .class suffix: `org.quartz.jobStore.checkInErrorHandler` and I got it working. It is maybe...
The implementation in MongoDBJobStore.replaceTrigger() copies over the jobData map from the old trigger, so it doesn't honor new jobData. There is already a mechanism in place if users of quartz...
Below config is working with jdbcjobstore but not mongojobstore. even with autostartup=false job is getting started
``` try { Integer.parseInt("a"); }catch (Exception e){ JobExecutionException e2 = new JobExecutionException(e); e2.setUnscheduleAllTriggers(true); throw e2; } ``` e2.setUnscheduleAllTriggers(true); This method doesn't work. The trigger associated with the job is still...
Hello, The class _**com.novemberain.quartz.mongodb.dao.TriggerDao**_ logs too often (every ~20 s), it creates massive spam in the console, which forces me to disable the logging for that class. Can you only...
Hi, guys! I am trying to connect to the one of the seed of the mongo replica set, to master seed, and have no success. I am using such kind...
finally I got the mongo backend working, but I would like to submit some feature requests. 1) Currently it is only possible to use jobdata on triggers (but not on...
Its added as a Todo in `TriggerRunner.prepareForFire`.