1

Could you please clarify the following?

  1. is current quartz 2.1 supports clustering for RAMJobStore?
  2. in a clustered environment is there a way to specify via Quartz that a job run in all nodes?
  3. in a clustered environment is there a way to specify via Quartz that a job run in a specific node?
Michael Irigoyen
  • 22,513
  • 17
  • 89
  • 131
Kathir
  • 2,733
  • 12
  • 39
  • 67

1 Answers1

0

a. is current quartz 2.1 supports clustering for RAMJobStore?

No, RAMJobStore works only within one JVM.

b. in a clustered environment is there a way to specify via Quartz that a job run in all nodes?

No, it's not possible.

c. in a clustered environment is there a way to specify via Quartz that a job run in a specific node?

No, cluster decides arbitrarily which node should run the job and you have no control over that. But see: Select node in Quartz cluster to execute a job.

Community
  • 1
  • 1
Tomasz Nurkiewicz
  • 334,321
  • 69
  • 703
  • 674
  • The JDBCJobStore is slow in a clustered environment since it access the common tables, rows and RAMJobStore is faster than JBDCJobStore in a clustered environment since it keeps everything in memory. – Kathir Nov 15 '12 at 06:00