delayed_job
delayed_job copied to clipboard
Database based asynchronous priority queue system -- Extracted from Shopify
Working config ruby 2.6.2 rails 5.2.4 delayed_job 4.1.8 ```ruby #config/environments/development.rb config.active_job.queue_adapter = :delayed_job config.active_job.queue_name_prefix = "ukcil_#{Rails.env}" ``` ```ruby #config/application.rb config.active_job.queue_adapter = :delayed_job ``` ```bash #Started with bin/delayed_job -n 1 start...
This fixes Invalid Timezone: US/Eastern error https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052730 Solution from https://stackoverflow.com/questions/31565999/invalid-timezone
Based on the work @webhoernchen started in #1130. We've been running this in production for a month while upgrading an installation from ruby 2.7 to 3.0 without issue. I think...
The new plugin creates a pidfile at location `#{Rails.root}/tmp/delayed_job.pid` when a worker starts and then removes it when a worker stops. It uses `lifecycle.around(:execute)` to achieve this. The file is...
Hi Team, Is there any way that we can set the max_attempt at the Job or Queue level like this: 1. Job level: ``` class WelcomeMessageJob def perform ... end...
This PR adds Ruby 3.3 to CI matrix
Copy of https://github.com/collectiveidea/delayed_job/pull/1148, but with cleanup and green specs > Delayed Job already supports worker pools that draw from specific queues. This is useful to ensure those tasks are processed...
Delayed Job already supports worker pools that draw from specific queues. This is useful to ensure those tasks are processed in a timely manner and do not starve. Coupling that...
For as long as I can recall, every log line produced by delayed_job appears twice, in two different formats. I'd love to disable this (because it's just noise) but especially...
Hi there, I've noticed several issues are very old or seem to not be relevant anymore, it would be great if these can be closed because they create the impression...