simplekiq
simplekiq copied to clipboard
Sidekiq-based workflow orchestration library
Bumps [sidekiq](https://github.com/mperham/sidekiq) from 6.1.0 to 6.4.0. Changelog Sourced from sidekiq's changelog. 6.4.0 SECURITY: Validate input to avoid possible DoS in Web UI. Add strict argument checking #5071 Sidekiq will now...
When I tried to install Simplekiq on a project, I had an issue with resolving dependencies: ``` Resolving dependencies.... Bundler could not find compatible versions for gem "sidekiq": In snapshot...
https://github.com/doximity/campaigns/blob/f3b5a7d457a0fc4b5e310c851ac9b55570ce18b2/app/jobs/audiences/sleepy_mass_cache_orchestration_job.rb ^ this job takes an approach to limiting the parallelization by recursively queuing itself after the partial set has completed, we could probably use a similar approach transparently in...
We have an initial experiment of this in Campaigns that went well, we could extract this into the gem but we also need to figure out what exactly should happen...
Seems like now that there *is* a readme that description/documentation should live there.
Sidekiq has the ability to quiet jobs (e.g. keep new jobs from be enqueued) enabling graceful shutdown. Because orchestrations contain jobs that are often coupled to each other code changes...
BatchingJob auto-registers Sidekiq batch callbacks when you define an `on_x` method. The problem is that if you have a callback that you don't need anymore and update the code removing...
I think we should -- it was part of our original vision and helps solve the same set of problems. But we probably should first make significant changes -- mainly...
Hey all! I've been using Simplekiq for several months and love it. ❤️ I hit an interesting challenge this past week and had an idea. I have an orchestration job...