kue Questions
2
Solved
I am using kue for my job queue, and I'd like to know without using the GUI how many jobs are still left, how many have failed, etc. How can I retrieve this kind of information?
For example, afte...
4
Solved
I am building a web app with node.js and mongodb.
I need to add delayed jobs. For example, sending users an email one month after signing up.
I haven't found an existing solution for delayed jobs b...
Foreword asked 23/3, 2013 at 14:52
4
According to the parse-server migration guide we could use something like Kue and Kue-UI to emulate the parse.com scheduled jobs functionality.
I haven't implemented Kue or Kue-ui, but looking at ...
Dragonfly asked 30/8, 2016 at 1:56
3
Solved
I'm using kue which uses node_redis, but I'm also already using node_redis for my sessions, so I'd like to have kue create a server on a specific port say the default 6379 and then kue listen on po...
Jablon asked 6/7, 2014 at 21:39
2
Using Kue, how do I schedule a job to be executed once every Thursday? The Kue readme mentions that I can delay a Job, but what about repeatedly executing the Job at a specific time?
I can do wha...
4
Solved
I have an export function that read the entire database and create a .xls file with all the records. Then the file is sent to the client.
Of course, the time of export the full database requires a...
2
In running kue-scheduler on heroku with the heroku redis plugin, while I can get kue jobs to work, it seems that kue-scheduler is requiring certain configuration of redis not allowed for in the her...
Yellowbird asked 21/7, 2016 at 0:50
3
Solved
I am using kue for delayed jobs in my node.js application.
I have some problems to figure out how I can restart a job using the API of kue without having to move the id of a job manually from the...
Manado asked 11/1, 2013 at 15:11
1
Solved
I'm working on what's basically a highly-available distributed message-passing system. The system receives messages from someplace over HTTP or TCP, perform various transformations on it, and then ...
Mcginnis asked 29/8, 2016 at 18:10
0
I'm using Kue to create jobs for my MEAN.js app. If the application is idle for some time the Redis connection is closed, apparently Kue is trying to process jobs while the connection is closed, an...
Recombination asked 30/8, 2016 at 16:28
2
Solved
I am creating jobs using Kue.
jobs.create('myQueue', { 'title':'test', 'job_id': id ,'params': params } )
.delay(milliseconds)
.removeOnComplete( true )
.save(function(err) {
if (err) {
conso...
Lovieloving asked 21/1, 2016 at 9:28
2
Solved
Web Dynos can handle HTTP Requests
and while Web Dynos handles them Worker Dynos can handle jobs from it.
But I don't know how to make Web Dynos and Worker Dynos to communicate each other.
For e...
1
© 2022 - 2024 — McMap. All rights reserved.