rq icon indicating copy to clipboard operation
rq copied to clipboard

Implemenent Periodic & Repeated Jobs similar to what rq-scheduler offers

Open ffeldhaus opened this issue 4 years ago • 3 comments

As rq now offers scheduled jobs and a lot of functionality from rq-scheduler, please also implement Periodic & Repeated Jobs similar to what rq-scheduler offers.

ffeldhaus avatar Feb 13 '21 22:02 ffeldhaus

I'm open to this, but before this is implemented, I'd also want RQ to be able to keep a history of results from job executions.

selwin avatar Feb 24 '21 11:02 selwin

Any news about this feature ?

Since rq-scheduler seems not to be maintained anymore, this feature will be awesome.

For now if I want a periodic job I add a bunch of scheduled jobs with queue.enqueue_at And then I regularely fill the scheduled jobs list with a while loop. This is clearly not the best solution :)

I'll be happy to help.

superjcvd avatar Mar 12 '24 17:03 superjcvd

In our case, what we do is to use the on_success or on_failure callbacks to re-schedule jobs once they are finished. In any case, to have something similar included by default on this library would be very helpful.

sduenas avatar Mar 12 '24 17:03 sduenas