Tagged Questions

A Ruby library to queue and defer processing of slow methods like sending email and image resizing.

learn more… | top users | synonyms

31
votes
11answers
12k views

How to monitor delayed_job with monit

Are there any examples on the web of how to monitor delayed_job with Monit? Everything I can find uses God, but I refuse to use God since long running processes in Ruby generally suck. (The most ...
16
votes
4answers
8k views

How to deploy resque workers in production?

The GitHub guys recently released their background processing app which uses Redis: http://github.com/defunkt/resque http://github.com/blog/542-introducing-resque I have it working locally, but I'm ...
13
votes
5answers
5k views

Starting delayed_job at startup

I'm using delayed_job with capistrano and would like a way to start delayed_job on startup of the web application using the 'script/delayed_job start'. This way capistrano can restart it on deploy. ...
10
votes
3answers
3k views

Getting delayed job to log

#Here is how I have delayed job set up. Delayed::Worker.backend = :active_record #Delayed::Worker.logger = Rails.logger Delayed::Worker.logger = ActiveSupport::BufferedLogger.new("log/ ...
7
votes
2answers
324 views

Error when utilizing Gibbon gem via delayed_job?

Without delayed_job, this code works fine; if I include delayed_job, I get an error of uninitialized constant EmailNewsletter::Gibbon with every attempt the worker makes. Rails 3.0.7, Gibbon 0.1.5 (a ...
7
votes
4answers
1k views

How to resolve deserialization error in delayed job?

I am trying to use DelayedJob and the job is failing, giving the following error in the database: {Delayed::DeserializationError ...
7
votes
6answers
1k views

Delayed_job not executing the perform method but emptying the job queue

I have a fresh rails 3 app, here's my Gemfile: source 'http://rubygems.org' gem 'rails', '3.0.0' gem 'delayed_job' gem 'sqlite3-ruby', :require => 'sqlite3' Here's the class that represents the ...
7
votes
1answer
181 views

Running tasks in the background with lower CPU priority

I have a feature in my CMS that allows a user to upload a zip file full of images and the server will extract them and insert each one into an image gallery. I've noticed that this grinds up the CPU ...
6
votes
3answers
296 views

NoMethodError with delayed_job (collectiveidea gem)

UPDATE: There's been a patch for this issue: https://github.com/collectiveidea/delayed_job/commit/023444424166ba2ce011bfe2d47954e79edf6798 UPDATE 2: For anyone running into this issue on Heroku ...
6
votes
1answer
263 views

Invoke delayed_job capistrano tasks only on specific servers

I have a dedicated server for delayed_job tasks. I want to start, stop, and restart delayed_job workers on only this server. I am using the capistrano recipes provided by delayed_job. When I only had ...
6
votes
2answers
2k views

Node.js workers/background processes

How can I create and use background jobs in node.js? I've come across two libs (node-resque and node-worker) but would like to know if there's something more used.
6
votes
2answers
1k views

Rails 3 - Delayed_Job (collectiveidea), trying to Delay Mailers - Error: NoMethodError (undefined method `delay' for UserMailer:Class)

I'm using the delayed_job gem here: https://github.com/collectiveidea/delayed_job I have the following in an observer: UserMailer.delay.msg_notification(record) In user_mailer.rb class ...
6
votes
1answer
2k views

How to cancel scheduled job with delayed_job in Rails?

Title says it all basicly. I am scheduling a job to run in say, 10 minutes. How to properly cancel this particular job without using any kind of dirty extra fields in model and so on. Is there any ...
6
votes
4answers
401 views

Why do sites like stackoverflow with badges use some type of delayed job to determine when to award a new badge?

Stackoverflow has a nifty badge system. One thing I noticed is that badges are not immediately awarded, but sometimes seem to have some type of a delay after I meet the criteria. I've noticed this on ...
5
votes
2answers
178 views

What available message solutions are there for inter-process communication in ruby?

I have a rails app using delayed_job. I need my jobs to communicate with each other for things like "task 5 is done" or "this is the list of things that need to be processed for task 5". Right now I ...
5
votes
1answer
374 views

How to make ExceptionNotifier work with delayed_job in Rails 3?

I'd like ExceptionNotifier to send out an email when an exception happens in a delayed job, just like for other exceptions. How can I achieve that?
5
votes
1answer
148 views

How to do Heroku-like Delayed Jobs in C#.NET?

Would like to implement something similar to this for our C#.NET Web App. http://devcenter.heroku.com/articles/queueing What pre-existing solutions are already out there that will work with .NET?
5
votes
6answers
785 views

polling with delayed_job

I have a process which takes generally a few seconds to complete so I'm trying to use delayed_job to handle it asynchronously. The job itself works fine, my question is how to go about polling the ...
5
votes
1answer
214 views

Can the delayed_job gem be used outside of Rails?

Is it possible to use the delayed_job gem outside of Rails? Or put another way, can it be used in a pure Ruby project? If so, how?
5
votes
2answers
410 views

Log from within collectiveidea/delayed_job

I try to log from within a delayed_job in rails. I configure it as following: Delayed::Worker.destroy_failed_jobs = false Delayed::Worker.max_attempts = 3 Delayed::Worker.backend = :active_record ...
5
votes
1answer
523 views

delayed_job stops running after some time in production

in production our delayed_job process is dieing somehow. Im not sure if its crashing or being killed by the operating system or what. I dont see any errors in the delayed_job.log file. What can I do ...
5
votes
4answers
2k views

Is Rails's “delayed_job” for cron task really?

delayed_job is at http://github.com/collectiveidea/delayed_job Can delayed_job have the ability to do cron task? Such as running a script every night at 1am. Or run a script every 1 hour. If not, ...
5
votes
1answer
855 views

Rails Devise send password reset mail as delayed job

i want set the rails plugin devise'reset_password_instructions to delayed_job..but i tried many ways is fail. i found a function password_controller#creat they have self.resource = ...
5
votes
2answers
764 views

Manually Retry Job in Delayed_job

Delayed::Job's auto-retry feature is great, but there's a job that I want to manually retry now. Is there a method I can call on the job itself like... Delayed::Job.all[0].perform or run, or ...
5
votes
1answer
797 views

Rails Delayed Job & Library Class

Hey we have a library class (lib/Mixpanel) that calls delayed job as follows: class Mixpanel attr_accessor :options attr_accessor :event def track!() .. dj = send_later :access_api # ...
5
votes
3answers
524 views

using Kernel#fork for backgrounding processes, pros? cons?

I'd like some thoughts on whether using fork{} to 'background' a process from a rails app is such a good idea or not... From what I gather fork{my_method; Process#setsid} does in fact do what it's ...
4
votes
2answers
159 views

What's the most elegant way to implement a digest email without reinventing a queueing system?

I have my transactional email system setup & by default people get emails as events happen: class Comment after_create :email_original_poster def email_original_poster ...
4
votes
1answer
68 views

How can I troubleshoot Delayed Job procs that are failing silently?

I will start Delayed Job with the following command: script/delayed_job -n 4 start Then at the end of the day I will check to see how many processes I have left, and there might be two. Or zero. I ...
4
votes
2answers
332 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 ...
4
votes
2answers
355 views

Delayed_job: Undefined method error on any call

I have a rails 3.0.5 app that was working just fine with delayed_job 2.1.4. It's been a few weeks since I touched the app, but I just went to tweak it and noticed that delayed_job is broken. ...
4
votes
2answers
367 views

Gems/Services for autoscaling Heroku's dynos and workers

I want to know if there are any good solutions for autoscaling dynos AND workers on Heroku in a production environment (probably a different solution for each of those, as they are pretty unrelated). ...
4
votes
1answer
467 views

How does one use delayed_job to make an Rails 3.0 ActionMailer run asynchronously? Encountering ArgumentErrors

I'm trying to delay a notification email to be sent to users upon signing up to my app. The emails are sent using an ActionMailer which I call InitMailer. The way I am trying to delay the jobs is ...
4
votes
1answer
528 views

Delayed Job giving a undefined method error

Delayed job (2.1.4) is working perfectly on my development machine, sending emails with gay abandon - however it is failing miserably when running on my server using Apache/Passenger(3.0.7). Rails ...
4
votes
2answers
293 views

Indicate to an ajax process that the delayed job has completed

I have a Rails 3 app that uses delayed_job to fetch some data (with a class method) when the user hits the page. How can I indicate to the ajax process that the class method has run (so that I can ...
4
votes
2answers
760 views

Sending delayed email from devise

Is there a simple way of telling Devise to send all email via delayed_job?
4
votes
4answers
594 views

rails high memory usage

I am planning on using delayed job to run some background analytics. In my initial test I saw tremendous amount of memory usage, so I basically created a very simple task that runs every 2 minutes ...
4
votes
2answers
177 views

A Faster / More Scalable Approach to Twitter OAuth Dance in Rails?

I'm running a Rails app on the Heroku Stack (complete with Memcached, DJ Asynchronous workers, MongoDB persistent storage). Right now we use Twitter Oauth as the only authentication option on our ...
4
votes
3answers
668 views

Delayed Job not processed in rspec

I am trying to run rspecs for a custom delayed job (GetPage::GetPageJob), but I have a problem. When I run them, the jobs are well enqueued (that is to say, well inserted in the delayed_jobs table), ...
4
votes
4answers
1k views

Use Delayed::Job to manage multiple job queues

I want to use Delayed::Job (or perhaps a more appropriate job queue to my problem) to dispatch jobs to multiple background daemons. I have several background daemons that carry out different ...
4
votes
2answers
649 views

Using delayed_job across multiple machines with some tasks that need to run locally

I'm trying to use delayed_job for various parts of a rails app. The problem is that if we have multiple instances of the app running, but certain jobs (processing uploads, for example) need to be run ...
3
votes
1answer
225 views

Delayed_job not sending Rails 3 emails

Note: Using Rails 3.1 and current delayed_job gem. I have a User model that calls after_create :mail_confirmation. The mail_confirmation method looks like the following, per the delayed_job ...
3
votes
1answer
288 views

how to test delayed_job callback hooks using RSpec

I'd like to verify that delayed_job callback hooks are getting called, but I don't see how to get RSpec to do it, especially when several layers of classes are involved. Assuming I have an ...
3
votes
1answer
247 views

Undefined method and bad serialization with delayed job on lion

I am getting some odd behavior on a newly set up mac with os x lion. Our app runs fine in the development environment locally but in the test environment delayed job is not serializing correctly. On ...
3
votes
2answers
84 views

How to Delay MessageDialogBox in Java?

So in this chunk of code: //Actions performed when an event occurs. public void actionPerformed(ActionEvent event) { String command = event.getActionCommand(); //If ...
3
votes
1answer
228 views

in delayed_job, are hooks called when Delayed::Worker.delay_jobs is false?

I'm using collectiveidea/delayed_job. In my RSpec tests, the [:before, :after, :success] hooks aren't getting called as I would expect. When Delayed::Worker.delay_jobs = true (the default), I see ...
3
votes
4answers
889 views

uninitialized constant Delayed::Job

I've added the delayed_job gem to my gemfile and installed correctly but when I try to run the following line: Delayed::Job.enqueue do_it(), 0, 1.minutes.from_now.getutc I get the error ...
3
votes
1answer
216 views

How can I force delayed_job to use a specific db connection?

I have a Rails 3 applications that uses different databases depending on the subdomain. I do this by using "establish_connection" in the ApplicationController. Now I'm trying to use delayed_job gem ...
3
votes
1answer
105 views

Stack overflow in Cucumber step definition when re-enqueueing delayed job in .perform

I've got a job that is supposed to re-enqueue itself: class TestJob def perform Delayed::Job.enqueue(TestJob.new, {priority: 0, run_at: 5.minutes.from_now}) true end end I'd like to ...
3
votes
1answer
418 views

Rails - Delayed Job of specific method with run_at in params / specifying when to post

I'm a bit at a loss here. I'm simply trying to delay a checkin, for instance, at a user defined time. I'd like to make it as simple as possible. EDIT: solved, see below. class MyController < ...
3
votes
1answer
219 views

Asynchronous cache expiration with rails

My application use a "conventional" cache sweeper (subclass of ActionController::Caching::Sweeper) to expire the cache (essentially fragments). Now, the cache expiration locks the application for ...

1 2 3 4 5 10