Kue is a priority job queue backed by redis, built for node.js.

learn more… | top users | synonyms

0
votes
0answers
31 views

Kue - Error: Auth error: ERR max number of clients reached

I am getting an redis connection error when depolyed in APP Fog. I don't know if KUE is generating too many connections. Here is stack ...
2
votes
1answer
50 views

Javascript - functions on functions?

I've recently used a nice library for node.js called Kue. I wanted to get some better understanding of what's going so I started reading the code... I stumbled on to a piece of code and my mind went ...
0
votes
0answers
47 views

how to solve Error: Cannot find module 'kue'

I am getting started on kue job queue an i am trying out if my producer works producer.js var kue = require('kue') , redis = require('redis'); kue.redis.createClient = function() { var client ...
1
vote
0answers
58 views

adding a job to a queue in kue

From the kue docs,creating a queue and adding job is is easy but i cannot follow how the job is being stored var kue = require('kue') jobs = kue.createQueue(); adding a job ...
0
votes
1answer
85 views

Nodejs: sharing session across meteor and express app running as separate instances

Basically, the user is logged in on the meteor app running on localhost:30000 using the accounts-ui package. Express app is running on localhost:34444. At some point, a user will need to use the ...
0
votes
1answer
118 views

Kue mongodb alternative

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 ...
0
votes
1answer
80 views

Fetching the result of a Kue job and pushing this to the client over open connection

I have an API endpoint that serves some JSON from a MongoDB. Simply like so: router.get('/api/links', function (req, res) { // Find existing links links.find({ feed: 1 }, function (err, links) { ...
1
vote
1answer
173 views

Node.js Kue worker send result

My app makes use of Kue to queue up requests, which are handled by worker.js because I need to send the requests that the job makes through Proximo - it's a little confusing. But because of this, the ...
0
votes
1answer
99 views

Kue callback when job is completed

My main Node instance forks a worker process, which accepts messages over IPC (using the built-in Node process.send() and process.on('message'...) which are objects containing information about new ...
1
vote
0answers
87 views

Is this leaking memory?

My code is leaking memory. After a couple of hours, it fills up the entire memory and crashes. I've simplified my code here, would anybody be able to tell if this looks like it leaks? Thanks. var ...
0
votes
1answer
96 views

How to retreieve jobs with specific status in kue?

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, after a ...
2
votes
0answers
118 views

How to process scheduled, recurring jobs with Kue?

In my webapp, users can create recurring invoices that need to be generated and sent out at certain dates each month. For example, an invoice might need to be sent out on the 5th of every month. I am ...
0
votes
1answer
54 views

Is it okay to produce and consume jobs in the same node process with Kue?

Looking at Kue (https://github.com/LearnBoost/kue) I am somewhat confused whether I can just produce and consume jobs in the same node process or do I need to launch the consumer in a separate node ...
0
votes
1answer
63 views

'job complete' event isn't firing in Kue

I can't figure out what I'm doing wrong, perhaps somone can point it out. I'm trying to figure out why my 'job complete' event isn't firing. var kue = require('kue'), jobs = ...
0
votes
0answers
124 views

Are there any good alternatives to Kue for background process management in node?

I'm working on a project where the background processes are increasing exponentially. So I'm looking for a good priority background queue for node. While looking for it online I found Kue but I'm new ...
1
vote
1answer
240 views

Node.js Kue how to restart failed jobs

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 ...
0
votes
1answer
348 views

Mongoose and Kue - Node.js - Object passed has no method save

I'm using mongoose and Kue for the Flow control. I pass an object retrieved from the database to Kue. When the job get processed, the object hasn't anymore some functions, like .save() & others. ...
6
votes
2answers
1k views

How to communicate Web and Worker dynos with Node.js on Heroku?

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 ...
0
votes
0answers
206 views

NodeJS Kue Background Job - Check for network connection

I have a nodeJS kue queue. I want to create jobs that require network connection. This is NOT guaranteed. But if network connection is not available, the task should still be created, but just wait a ...