Reputation: 197
I am using Quartz in my Spring web application.
I successfully configured everything in cluster environment where quartz will pick its JOBS firing properly.
Now one of my JOB is big and will take so much resource and time. So can i share the JOB between nodes so that same JOB is executed on two nodes in a clustered way, Not different triggers ?
Or there any other ways to achieve this ?
Thanks
Upvotes: 0
Views: 771
Reputation: 10987
Quartz provides feature to trigger jobs. What you do inside in not quartz's responsibility.
Depending upon what your job is doing you can look to divide into smaller jobs and then cluster will help.
If you provide more info then we can help.
Upvotes: 1