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

There's an existing issue https://github.com/collectiveidea/delayed_job/issues/935 where this is documented - just wanted to add a note to the README mentioning that `bin/delayed_job run` hangs in dev mode on OSX as...

the README mentioned using MongoDB at the top but failed to include setup instructions alongside the ActiveRecord setup instructions This addresses that.

## Description I suggest adding an additional a `pid_delimiter` attribute for the daemons gem. This attribute does not affect on compatibility with previous versions `delayed_job` or `demons` gems. I also...

I've been noticing my delayed_job workers going incredibly slowly (1 job per second), and looked at the logs to see what might be up. It seems like about 90%+ of...

If 1 daemonized DJ worker is running and you execute restart with a different n value, the existing worker will effectively be orphaned, in that it continues to run through...

This PR changes `delayed_job` command line to show warning like `--identifier is ignored because --pool is specified and used.` when both `--pool` and `--identifier` flags are specified. It should fix...

## Basic info I have a project with delayed_job and I need to check status delayed_job workers after each deploy using a follow script: `require 'delayed/command'` `Delayed::Command.new(['start','-n', '2']).daemonize` `>delayed_job.0: process...

Currently, the **'jobs:clear**' task clears all the records from the delayed_job table however, there will be scenarios where jobs only from a specific queue need to be cleared. ex: restarting...

This change eliminates warnings that occur when [running Rails Active Job tests](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#for-a-particular-component) (ruby 2.5.3p105). ``` cd rails/activejob bundle exec rake test:delayed_job REDACTED/delayed_job/lib/delayed/worker.rb:291: warning: method redefined; discarding old max_attempts REDACTED/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb:64: warning:...