tunix2fr
tunix2fr

Reputation: 381

Can i create a "local" jobs (or triggers) when the scheduler is configured in cluster mode?

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

Answers (1)

ebtokyo
ebtokyo

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

Related Questions