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 are a few issues concerning Delayed::Job and Docker. I'm migrating a Rails app with Delayed::Job to render.com and couldn't do out of the box. (I have to admit that...

The fix is based on our company's need but we think it may be useful for others in community too.

I found myself debugging an error in production infrastructure that made some of the DJ workers to die (or not start at all) and I was having a hard time...

Just a small logging improvement for `PerformableMethod`. This PR adds warning message when `Object#delay` is called with a block given. Use case: The code below won't perform as intended because...

Adds a functionality for pausing or killing the rake task `rake jobs:work`. It will check for relevant file's presence (`stop_dj_worker.txt` or `pause_dj_worker.txt`). If the file is present, it will stop...

- Converted `raise_signal_exceptions` class attribute accessor to `raise_exceptions_for_signals`. - This, by default will be a blank array that is similar to having `raise_signal_exceptions = false`. - Since there is a...

With around 500K jobs in the delayed_jobs table, it gets really slow, to the point of being unusable. My slow query log is filled with these: SET timestamp=1379681371; UPDATE `delayed_jobs`...

We upgraded our Rails application from version 5.0 to version 6.0. Somewhere along the process `deliver_later` for our Mailers stopped working. I get the following error message: > TestMailer.standard_template_test_mail.deliver_later Enqueued...

Fixes error when loading job with newer Ruby and Syck is used as YAML engine (tenderlove/syck gem): "Job failed to load: undefined method `load_dj' for Syck:Module" Fixes #786

I'm not quite sure what exactly is at fault here but let me explain. We use delayed_job(_active_record) for almost a decade without any real issues. We have DJs on multiple...