Top "Delayed-job" questions

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

getaddrinfo: nodename nor servname provided, or not known

I have a Ruby on Rails application that I am deploying on a computer running Mac OS X 10.6. The code …

ruby-on-rails ruby capistrano delayed-job
How can I see the delayed job queue?

I wonder if I succeeded to get Delayed::Job working. Can't see jobs in the delayed_jobs table. Is that …

ruby-on-rails delayed-job
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 …

ruby-on-rails ruby rubygems delayed-job
How do you tell a specific Delayed::Job to run in console?

For some reason, Delayed::Job's has decided to queue up but not excecute anything even though I've restarted it several …

ruby-on-rails delayed-job
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 …

ruby-on-rails ruby delayed-job monit god
Logging in delayed_job?

I can't get any log output from delayed_job, and I'm not sure my jobs are starting. Here's my Procfile: …

ruby-on-rails ruby logging delayed-job clockwork
How to test ActionMailer deliver_later with rspec

trying to upgrade to Rails 4.2, using delayed_job_active_record. I've not set the delayed_job backend for test environment …

ruby-on-rails rspec actionmailer delayed-job rails-activejob
Destroying all delayed job in rails

I am using collectiveidea for rails 2.3.8. I am creating array of delayed jobs to perform some tasks, after some time …

ruby-on-rails ruby delayed-job
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/…

ruby-on-rails capistrano delayed-job redis resque
How to cancel scheduled job with delayed_job in Rails?

I am scheduling a job to run in say, 10 minutes. How to properly cancel this particular job without using any …

ruby-on-rails ruby ruby-on-rails-3 delayed-job