The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
25 views

Hirefire not run delayed jobs

i'm using delayed job active record with hirefire gem to mange workers. But on heroku it seems like hirefire not running jobs and when i run this command below heroku run rake jobs:work --app ...
1
vote
1answer
129 views

jobs is not firing on heroku using hirefire

i'm using gem "delayed_job_active_record" with hire fire on heroku to run jobs in background.i have also set heroku envirnoment variable using my heroku account. My sequence in gem file is below ...
0
votes
1answer
46 views

HireFire on Heroku Cedar no getting triggered?

I've upgraded an app from 3.2/1.8.7/Bamboo to 3.2/1.9.2/Cedar. Everything seems to be working except HireFire is not getting triggered properly. Things seem to go smoothly when I run bundle exec ...
0
votes
1answer
46 views

HireFire error when moving from bamboo to cedar on Heroku: Connection Refused

I'm migrating an app from 3.0/1.8.7/bamboo to 3.2/1.9.2/cedar. I'm getting the following error, which is preventing my HireFire to run my DelayedJobs. Any idea what is wrong here? -----> ...
1
vote
1answer
85 views

Hirefire isn't working with Heroku/Delayed Job/Mongoid - latest versions

I am using the hirefire beta to manage my mongoid-based DJ queue workers - adding and removing dynos as the queue depth changes. The problem is that all I get is the error: 2013-01-27T23:07:14+00:00 ...
3
votes
1answer
253 views

How can I tell how many worker dynos I'm using on Heroku?

I'm using HireFireApp to autoscale my web and worker dynos on Heroku. However, when I navigate to the Resque app on my application it says "0 of 46 Workers Working" Does this mean that I'm using 46 ...
2
votes
1answer
352 views

Getting hirefire to work with Rails 3.1.3, DJ 3.0.0, Heroku Cedar Stack

I'm trying to get hirefire to work with Heroku Cedar Stack. I tried using this patch, but that doesn't seem to help either. Workers are not getting spun up at all. Anybody here has a solution that ...
2
votes
1answer
205 views

How to get working with hirefire for delayed_job in rails 3 in development?

I am developing an app with rails 3 using delayed_jobs. I'm using Hirefire to scale up and down workers as and when needed. How can I get hirefire working in my development environment, to test it is ...
6
votes
3answers
631 views

Delayed_job vs. Appoxy SimpleWorker

I was about to start getting delayed_job up and running on my app when I found Appoxy SimpleWorker on Heroku. Appoxy says it's massively parallel and that it scales workers up and down to minimize ...