Reputation: 1751
I'm working on a nodeJS API.
I'm searching for a good solution to implement delayed job workers,
I have found some possibilities but they don't work with a mongo based database (like Kue, or Bull using redis)
The goal of this is to monitoring my jobs activities, success failure and retry (and have a page like the /delayed_jobs
with Ruby on Rails )
Anyone has an idea?
Thanks !
Upvotes: 0
Views: 629
Reputation: 11
Try Agenda. Agenda uses a MongoDB database to persist scheduled tasks
Upvotes: 1