Skip to content

Instantly share code, notes, and snippets.

@mojodna
Forked from RandomEtc/Procfile
Created September 29, 2011 20:22
Show Gist options
  • Star 47 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save mojodna/1251812 to your computer and use it in GitHub Desktop.
Save mojodna/1251812 to your computer and use it in GitHub Desktop.
Getting Kue working on Heroku

Workers can be activated with heroku scale:

heroku scale web=1 worker=1

Each process is $0.05/hr (or about $35/month).

You'll need a Redis instance. For RedisToGo you need a mini or higher to accept two connections AFAICS. Not sure what the upper limit is on workers yet.

heroku addons:add redistogo:mini   

A mini instance is just $5 a month and should be billed by the second. To remove, do:

heroku addons:remove redistogo   
var express = require('express')
, kue = require('kue')
, url = require('url')
, redis = require('kue/node_modules/redis');
// make sure we use the Heroku Redis To Go URL
// (put REDISTOGO_URL=redis://localhost:6379 in .env for local testing)
kue.redis.createClient = function() {
var redisUrl = url.parse(process.env.REDISTOGO_URL)
, client = redis.createClient(redisUrl.port, redisUrl.hostname);
if (redisUrl.auth) {
client.auth(redisUrl.auth.split(":")[1]);
}
return client;
};
// then access the current Queue
var jobs = kue.createQueue()
, app = express.createServer();
app.get('/', function(req, res) {
var job = jobs.create('crawl', {
url: 'http://example.com'
, token: 'foo'
});
job.on('complete', function(){
// avoid sending data after the response has been closed
if (res.finished) {
console.log("Job complete");
} else {
res.send("Job complete");
}
}).on('failed', function(){
if (res.finished) {
console.log("Job failed");
} else {
res.send("Job failed");
}
}).on('progress', function(progress){
console.log('job #' + job.id + ' ' + progress + '% complete');
});
job.save();
// timeout after 5s
setTimeout(function() {
res.send("OK (timed out)");
}, 5000);
});
// wire up Kue (see /active for queue interface)
app.use(kue.app);
app.listen(process.env.PORT);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
var kue = require('kue')
, url = require('url')
, redis = require('kue/node_modules/redis');
// make sure we use the Heroku Redis To Go URL
// (put REDISTOGO_URL=redis://localhost:6379 in .env for local testing)
kue.redis.createClient = function() {
var redisUrl = url.parse(process.env.REDISTOGO_URL)
, client = redis.createClient(redisUrl.port, redisUrl.hostname);
if (redisUrl.auth) {
client.auth(redisUrl.auth.split(":")[1]);
}
return client;
};
var jobs = kue.createQueue();
// see https://github.com/learnBoost/kue/ for how to do more than one job at a time
jobs.process('crawl', function(job, done) {
console.log(job.data);
done();
});
{
"name": "kue-test"
, "version": "0.0.1"
, "private": true
, "dependencies": {
"express": "~2.4.6"
, "ejs": "~0.0.1"
, "kue": "~0.3.1"
}
}
web: node app.js
worker: node consumer.js
@kithokit
Copy link

kithokit commented Aug 1, 2014

How can we add a Kue interface on heroku as well?
Want to check out the status of each job...

@rscheuermann
Copy link

This is a great, thanks so much! FWIW, I solved this slightly differently using Kue's built-in redis connection options:

var kueOptions = {};

if(process.env.REDISTOGO_URL) {
    var redisUrl = url.parse(process.env.REDISTOGO_URL);
    kueOptions.redis = {
        port: parseInt(redisUrl.port),
        host: redisUrl.hostname
    };
    if(redisUrl.auth) {
        kueOptions.redis.auth = redisUrl.auth.split(':')[1];
    }
}
var jobs = kue.createQueue(kueOptions);

@openjck
Copy link

openjck commented Jul 30, 2015

In theory, this should be possible:

var kue = require('kue');
var q = kue.createQueue({
  redis: process.env.REDIS_URL
});

... where REDIS_URL is the environment variable that represents the Redis URL. This doesn't work currently due to this bug.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment