[nodejs] Re: Job queue for Node.js

2014-11-12 Thread Paul Jensen
At my former employer we created a Job Queue (to replace Kue) for our needs: https://github.com/webcast-io/jobukyu It's essentially a REST API on top of MongoDB, with support for web hooks. MongoDB does has document-level atomicity, see here:

Re: [nodejs] Re: Job queue for Node.js

2014-11-12 Thread Behrad
2014-11-12 17:42 GMT+03:30 Paul Jensen paulbjen...@gmail.com: At my former employer we created a Job Queue (to replace Kue) for our needs: ​ ​ Kue has fixed some serious atomicity problems ​it had a year ago, and is planned to move into a fully atomic (server side LUA based redis) state

Re: [nodejs] Re: Job queue for Node.js

2014-11-11 Thread Andrew Kelley
On Monday, November 10, 2014 9:46:27 PM UTC-7, Alisson Cavalcante Agiani wrote: Andrew, is your implementation atomic? Yes. Lua scripts are used to do atomic operations on redis. -- Job board: http://jobs.nodejs.org/ New group rules:

[nodejs] Re: Job queue for Node.js

2014-11-11 Thread Behrad Zari
Have you tried https://github.com/LearnBoost/kue ? On Tuesday, November 11, 2014 3:43:09 AM UTC+3:30, Alisson Cavalcante Agiani wrote: Does anyone knows a good job queue that has atomicity and scheduled jobs? -- Job board: http://jobs.nodejs.org/ New group rules:

[nodejs] Re: Job queue for Node.js

2014-11-10 Thread Sameer Joshi
I have used Agenda which is backed with MongoDB. That has served my purpose. There is also an AgendaUI package where you can view all the status of the jobs which have been schsduled Reference: 1) https://www.npmjs.org/package/agenda 2) https://www.npmjs.org/package/agenda-ui On Tuesday,

Re: [nodejs] Re: Job queue for Node.js

2014-11-10 Thread Ω Alisson
It is very nice, but it doesn't seem to delegate the job processing to other servers, or am I wrong? On Tue, Nov 11, 2014 at 1:45 AM, Sameer Joshi sameer.joshi7...@gmail.com wrote: I have used Agenda which is backed with MongoDB. That has served my purpose. There is also an AgendaUI package

[nodejs] Re: Job queue for Node.js

2014-11-10 Thread Andrew Kelley
On Monday, November 10, 2014 5:13:09 PM UTC-7, Alisson Cavalcante Agiani wrote: Does anyone knows a good job queue that has atomicity and scheduled jobs? Here's one: https://github.com/andrewrk/node-redis-dist-job-queue You'd have to use `setInterval` for scheduling. -- Job board:

Re: [nodejs] Re: Job queue for Node.js

2014-11-10 Thread Ω Alisson
Andrew, is your implementation atomic? On Tue, Nov 11, 2014 at 2:35 AM, Andrew Kelley superjo...@gmail.com wrote: On Monday, November 10, 2014 5:13:09 PM UTC-7, Alisson Cavalcante Agiani wrote: Does anyone knows a good job queue that has atomicity and scheduled jobs? Here's one: