delayed_job
delayed_job copied to clipboard
Database based asynchronous priority queue system -- Extracted from Shopify
Hello there, We noticed that our workers when encountered with a delayed job that specifies a deleted object in its handler cause the workers to crash and halt processing more...
https://calvin.my/posts/avoiding-table-name-conflict-when-multiple-delayed-job-accessing-the-same-database Is the above correct? If it is correct having some mention in the README file can help avoid confusion for people working in constrained legacy environments.
I'm getting the following error and I'm not sure if it has to do with mysql2 or delayed_job. Any insight would be appreciated. Thanks Using: - delayed_job 4.1.9 with sequel...
First off, awesome work on Delayed Job. I'm immensely grateful for what's been done here and I'm really dependent on Delayed Job continuing to be amazing. Given that, I'm wondering...
@albus522 I'm using delayed job 4.1.9 , delayed_job_active_record 4.1.6 , when I try to send 10,000 emails via delayed job, it get stucks and the delayed job stops working, job...
Rails auto-updates itself in development mode (config.cache_classes = false), which is very handy during development. So far, I find that I must restart the delayedjob process every time I make...
## Summary Including time in logger pollutes loggers that already have a timestamp included. Developers can set their own logger through `Delayed::Worker.logger`. Additionally, common logging platforms are able to determine...
4.0.6 introduced the ability to [reload](https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/worker.rb#L306) the app in an attempt to behave like a Rails web application when the configuration `cache_classes == false`. Unfortunately, with our very large application,...
Fixes issue https://github.com/collectiveidea/delayed_job/issues/1145
https://github.com/collectiveidea/delayed_job/blob/baed6e813870e1144e7a4291bc71e06a67a533de/lib/delayed/worker.rb#L119 We are running a rack application (not Rails) that uses DelayedJob as well as loads in ActionDispatch i.e. ```ruby spec.add_dependency 'actionpack' spec.add_dependency 'delayed_job' ... require 'action_dispatch' require 'delayed_job' ```...