We are using Cron4j java scheduler for scheduling jobs which execute every night. Now, when this same web application is deployed(Tomcat) on cluster(2 nodes) at the client's site the jobs run twice. Is there any way to avoid this problem?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I believe the only way of doing this would be to use some external shared state, like in a database for example, to provide some locking. |
|||
|
|
|
One of the ways to solve it would be to make your webapp to accept a parameter, e.g. So one webapp would have this value set to |
|||
|
|