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

We're running delayed_job on a beta environment and a production environment simultaneously. Both access the same database. When we push a change to beta that e.g. deletes a job type,...

script/delayed_job was for Rails 3 and less. `rake jobs:work` will work with any ActiveJob-compatible adapter.

We're looking at implementing DelayedJob in a sinatra app using the Redis store, however, the backends page: https://github.com/collectiveidea/delayed_job/wiki/Backends has a couple of broken links: the link for the `MongoMapper` store...

Only a small nitpick, but there is a rake task that `raise`s without a type. Added a new error type.

As already described in #459 , the default kill timeout of 20 seconds of the daemons gem might be not appropriate for every project, especially when having long running jobs....

This aims to change the delayed job hooks to have more specific names to avoid collisions. Because of `performable_method`, many objects can be turned into delayed job payload objects. If...

I propose that an optional column be supported that stores the handler (job) name. It looks like it would be a fairly trivial change to the `Delayed::Backend::Base` module to support...

Currently the code reloads the Rails app every 5 seconds (default wait time). This is not necessary, as the reload only needs to happen when there are jobs to run....

Related to issue https://github.com/collectiveidea/delayed_job/issues/1028. #### Namespace all configuration variables used by **Delayed::Job** under the `DELAYED_JOB_`-prefix. ``` MAX_PRIORITY 👉 DELAYED_JOB_MAX_PRIORITY MIN_PRIORITY 👉 DELAYED_JOB_MIN_PRIORITY QUEUE 👉 DELAYED_JOB_QUEUE QUEUES 👉 DELAYED_JOB_QUEUES QUIET 👉...

The extensibility in Delayed Job is a great, enabling developers to add all kinds of cool functionality. The only problem is it can be really hard to find Delayed Job...