sidekiq-unique-jobs
sidekiq-unique-jobs copied to clipboard
Prevents duplicate Sidekiq jobs
**Used versions** Sidekiq: `6.4.1` Sidekiq Unique Jobs: `7.1.27` Rails: `7.0.2.2` Redis: `4.6.0` **Describe the bug** Often get `limit exceeded` in the changelog even with a job triggered with an interval...
Documentation of `lock_ttl` has evolved over time in various places in the readme, and now seems to describe somewhat different things depending on where you look. > Lock TTL decides...
**Describe the bug** We have jobs that occasionally take a long time to execute (~20 minutes). These jobs are using until_and_while_executing. After about a minute a duplicate job start running....
**Describe the bug** Our prod uniquejobs:digests sorted set in redis grew to 3GB in about 3 weeks. (~5mil jobs/day, less than a 1000 total jobs in queues and dead job...
**Describe the bug** `PRIMED` key grows indefinitely for jobs that requeue themselves in `after_unlock` callback if the job is completed and re-queued again within 1 second of when the initial...
Right now I have many duplicate jobs, So, I want to remove the job before enqueue. I have sidekiq throttle worker. ``` Here is my config. ruby '3.1.2' 'rails', '~>...
**Is your feature request related to a problem? Please describe.** Yes, when the queue is deleted from the Sidekiq dashboard, it doesn't unlock the locks. **Describe the solution you'd like**...
**Is your feature request related to a problem? Please describe.** We have a worker process that updates a block of data, we were using :until_and_while_executing and it worked as expected....
Added a note to README on `schedule_in` option for `reschedule` conflict strategy