views:

62

answers:

2

Hi everyone,

I have 4 instances of Quartz Server. All of the instances point to one ADO JobStore. All I want to do is to make each Quartz instance execute the same job at the same time.

I hope it's clear enough.

+1  A: 

This isn't supported out of the box. Whenever a trigger fires, it can only be consumed by one instance. You could fire 4 triggers, but it is not guaranteed that the job will not run twice on one instance.

If you want each instance to fire the job once, then you will have to set up 4 separate job stores.

TskTsk
A: 

thanks for your answer

aleo
Please don't say "thanks" in an answer. Use a comment.
Robaticus
ok, thank you for the hint!
aleo