delayed_job
delayed_job copied to clipboard
Database based asynchronous priority queue system -- Extracted from Shopify
Is there an easy way to split the jobs between four servers? Or at least prevent a job to be processed twice?
We need mechanism for delayed_job to respond to SIGQUIT the same way it currently responds to SIGTERM due to disagreements between the rails and nginx about which should be triggering...
Add command line switch (--exit-after) or Environment variable (EXIT_AFTER),which causes work to exit after a specific number of jobs, irrespective of success or failure.
If there are scheduled jobs in the future, they should not be included in the `jobs:check`, which is intended to look for jobs that *should* be processed but have not...
If a job is currently being processed, we want an option to exclude them from being reported in `jobs:check`. `jobs:check`’s primary purpose should be to see the outstanding queue, not...
`__delay__` alias method is missing in `performable_mailer.rb`, while it is available in `message_sending.rb` Was there any specific reason for the same? If not, please add `__delay__` in performable_mailer as well...
I am facing an issue when I run any service with a delayed job it executes successfully but after the first run, it should not be running again. but it...
When a Job raises an exception with a non default encoded message string, Delayed Job crashes with `Encoding::CompatibilityError`. Demo with stack trace: https://github.com/fnordfish/activejob-poison-pill-demo When using SQLite as storage and a...
Sometimes, a job that normally takes < 1 second to run, will by executed by a worker, but it will never complete. I've configured monit to monitor the workers, but...
Just a small logging improvement for Module methods. At the moment logging is not very usefull: `Module#call`