Re: [The Java Posse] Re: Coordinating jobs

2012-10-29 Thread Ryan Schipper
Jgroups - http://www.jgroups.org/ ?? No affiliation. I have used it before for grouping and notifications (member leaves, member joins, etc). No significant issues. On 29 October 2012 18:53, Phil Haigh wrote: > I recently worked on a Grails app that ran as four nodes; one node > performed job s

Re: [The Java Posse] Re: Coordinating jobs

2012-10-29 Thread Phil Haigh
I recently worked on a Grails app that ran as four nodes; one node performed job scheduling and announced itself as the 'master' via a UDP broadcast. If I remember correctly it would send a UDP periodically; when other nodes stopped receiving, another would assign itself as master, start broadc

Re: [The Java Posse] Re: Coordinating jobs

2012-10-28 Thread Rakesh
thanks guys for the recommendation to use Quartz Jdbc thingy. Unfortunately, I am not using a relational db!! I'm using MongoDB. Rakesh On 27 October 2012 16:59, Wesley Hartford wrote: > I've been using quartz for years and love it. The JDBC job store can be a > little tricky to get working, b

[The Java Posse] Re: Coordinating jobs

2012-10-27 Thread Wesley Hartford
I've been using quartz for years and love it. The JDBC job store can be a little tricky to get working, but it gives you just what you're looking for, and once it is set up, it is rock solid. Reply if you are having trouble setting it up and I'll post the settings I've used. Wesley On Wednesda