kue-scheduler icon indicating copy to clipboard operation
kue-scheduler copied to clipboard

A job scheduler utility for kue, backed by redis and built for node.js

Results 57 kue-scheduler issues
Sort by recently updated
recently updated
newest added

Hi, now that kue is deprecated (no longer maintained) can you maybe provide a statement about the future of this project? BG

I can not make the job auto removed when complete. I define the job as - job = Queue.createJob(type, payload) .attempts(3) .backoff( {delay: 10*1000, type:'fixed'} ) // // back of...

bug
enhancement

When I start Server with job at the first time with one time period, then change time period and restart server, cron-job works using old time period and not update...

The code below creates a queue and add the job successfully, however when removing the job from the queue, i got an error saying > UnhandledPromiseRejectionWarning: TypeError: Cannot read property...

unable to setup redis on heroku server which has auth and password **# try 1** var options = { prefix: 'w', skipConfig: false, redis : keys.redis_url, restore: true }; **#...

**Hi, is anyone having the same problem? I am trying to migrate my parse host backend to heroku. I am changing Parse.Cloud.Job to kue-scheduler. It seems the every() function doesn't...

I am using Heroku and Redis along with kue-scheduler to setup a background task. I have already enabled keyspace events but for some reason my job only runs once and...

I believe this is due to a change I introduced: If a unique job is 'active' and the worker that is processing the job becomes unavailable and never calls done(),...

``` this.queue.restore(function (err, schedules) { if (err) { debug(`ERR: ${err.message}`) } debug('Restoring jobs...') schedules.forEach(schedule => { console.log(schedule) this.createJob() }) }) ``` This is how I try to restore jobs from...

Currently unique scheduled jobs re-use the same job id to enforce a single running job. I am suggesting in the location that we are using the current redlock on scheduling...

enhancement
discussion
feature