delayed icon indicating copy to clipboard operation
delayed copied to clipboard

a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process millions of background jobs per day

Results 8 delayed issues
Sort by recently updated
recently updated
newest added

Change `Delayed::JobWrapper` from directly invoking `:execute` callbacks and `job#perform_now`, to instead calling `ActiveJob::Base.execute` and letting ActiveJob handle the callbacks, job deserialisation and performing internally. To explain why, we've observed a...

https://github.com/Betterment/delayed#migrating-from-delayedjob states "that some configurations, like queue_attributes, exit_on_complete, backend, and raise_signal_exceptions have been removed entirely." I think the lack of raise_signal_exceptions (and the reliance on the behaviour described in https://github.com/Betterment/delayed#running-a-worker-process)...

Hi! This project looks very exciting for teams looking to migrate away from `delayed_job`. However, I find myself having some lingering questions about the idempotency requirement of this gem: *...

Any chance the private dashboard fork will be open-sourced? If not, any good gems we can rely on for a decent UI similar to sidekiq?

In the case of many jobs getting enqueued at about the same time, they might overwhelm the system, fail and be retried at some later point. However if there's _so...

Hi! We have migrated `DelayedJob` to `Delayed` and are running it. While observing the worker, we came across an error and found a difference in behavior. Here is the stack...

I am looking for a Sidekiq alternative and from what I can tell this is quite similar to good_job? - Could you please comment where you see the differences/advantages? The...

MySQL 8 has [added support for SKIP LOCKED](https://dev.mysql.com/blog-archive/mysql-8-0-1-using-skip-locked-and-nowait-to-handle-hot-rows/) so it doesn't have to be psql-only anymore