We are using quartz scheduler and my requirement is to run Job in each server in clustered environment . We have 2 server configured in clustered environment . for example if Job is schedule for 8PM then it should start at both the server .
Asked
Active
Viewed 960 times
1
-
possible duplicate of [Quartz scheduler in cluster environment](http://stackoverflow.com/questions/12626380/quartz-scheduler-in-cluster-environment) – Wim Deblauwe Apr 25 '14 at 08:18
-
Then what is the need for cluster? Cluster is required to load balance I mean start the job in on server based on load. – Karthik Prasad Apr 25 '14 at 08:22
-
so if I will set org.quartz.jobStore.isClustered = false , will it cause Job will be execusted in both the severs ? – Raj Apr 25 '14 at 08:26
-
1You need to run a separate (non clustered) quartz scheduler on each server – Michael Wiles Apr 25 '14 at 08:50
-
we already have 4 job configured with clustered scheduler and the new Job requirement is to make it non clustered . so we will need 2 scheduler clustered and non-clustered in the same JVM . is this is the only solution ? – Raj Apr 25 '14 at 19:36
-
any advice on above ? – Raj Apr 27 '14 at 05:07
-
i tired with org.quartz.jobStore.isClustered = false and RAMJobStore but it didn't work for me – Raj Apr 29 '14 at 08:51
-
i tired with org.quartz.jobStore.isClustered = false and RAMJobStore but it didn't work for me . any advice ... – Raj May 12 '14 at 04:04
-
can you post your config , also explain what didnt work ? – M.Faizal May 12 '14 at 04:38