delayed_job icon indicating copy to clipboard operation
delayed_job copied to clipboard

Database based asynchronous priority queue system -- Extracted from Shopify

Results 142 delayed_job issues
Sort by recently updated
recently updated
newest added

rake jobs:work showing error Mysql2::Error: Table 'lienexpos_dev.delayeds_backends_active_records_jobs' doesn't exist: SHOW FULL FIELDS FROM `delayeds_backends_active_records_jobs` using rails 4.2.0 and ruby 2.3.1

This is driving me batty, mostly due to the random nature of it. We are running Rails 4.1 and I have a simple ActiveResource (not ActiveRecord) object called "User" with...

I have 2 long running jobs. The first one runs on a schedule, and when it finishes it then enqueues the second job like this: `Delayed::Job.enqueue(NextJob.new)` I have a max...

I've added support to these options that are used for Daemons gems. In our case we have some long running jobs that we don't want to be locked when the...

Restarting delayed jobs always has to forcefully kill the existing process: ``` RAILS_ENV=production bin/delayed_job restart --pid-dir=/srv/app/shared/pids/ delayed_job: trying to stop process with pid 2929... delayed_job: process with pid 2929 won't...

One of the nice things about Sidekiq is being able to save all your commandline options in a config file so you can reuse that everywhere. I just wanted to...

I'm using DelayedJob through the ActiveJob library. At a certain moment, I call the `perform_later` method (form ActiveJob) to enqueue a task. It works fine in the app and all...

I wonder why [daemonize](https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/command.rb#L102) is not parallelized (via Thread). It would at least stop worker much faster. Thanks for your opinion. Regards, Phil

This is how I execute delayed_job restart (as a part of the jenkins deployment script): ``` RAILS_ENV=production bundle exec script/delayed_job -n 5 restart ``` Problem is that it keeps on...

I had an eager load statement that caused a very long SQL statement. It was longer than 16M, the default `max_pakcet_size` of MySQL, thus the server rejected it with an...