Reputation: 381
I tested successfully for schedulers clustered with jdbcjobstore.
But i would like to create some jobs that could be specified for some of schedulers. I thought that by setting "isVolatile" to "true" but triggers (with isVolatile=true) still be saved in database.
Any helps could be appreciated !
PS: i'm using Quartz 1.8
Upvotes: 0
Views: 291
Reputation: 2379
Volatile jobs are non-volatile in a clustered environment. In that case I would suggest to use a RAMJobStore on your scheduler.
Normally you should have in your logs :
note: volatile triggers are effectively non-volatile in a clustered environment.
Upvotes: 1