Automattic / kue

Kue is a priority job queue backed by redis, built for node.js.
http://automattic.github.io/kue
MIT License
9.45k stars 862 forks source link

[Question] What about repeatable Jobs? #1151

Open gperdomor opened 6 years ago

gperdomor commented 6 years ago

Hi... Exist a way to configure repeatable jobs? Maybe like a cron job like bull does

Rockstar04 commented 6 years ago

There is a third-party plugin for Kue that may be able to help you. https://github.com/lykmapipo/kue-scheduler

You could also try to have the job processor queue another job, delayed to whatever datetime you need. delayed-jobs

DevBrent commented 6 years ago

@Rockstar04 Your second solution is inadvisable considering if the job, queue, or hardware the job is running on fails you can end up not re-queuing.

abhinav118 commented 6 years ago

Any update here? Would love to use a repeatable job with kue or a way to enqueue the same job with a timer based on a condition. Newbee here, looking forward to any alternatives