sidekiq-unique-jobs icon indicating copy to clipboard operation
sidekiq-unique-jobs copied to clipboard

Prevents duplicate Sidekiq jobs

Results 62 sidekiq-unique-jobs issues
Sort by recently updated
recently updated
newest added

I'd like to ask if there already is or if you could add documentation about Redis keys and maybe a flow chart? E.g. what is "AVAILABLE", "EXISTS" and "GRABBED" keys...

documentation
feature request
v7.x

**Is your feature request related to a problem? Please describe.** We just came across this project—it looks awesome! Thanks so much. We're hoping to use something like `until_and_while_executing` to prevent...

enhancement
documentation
feature request

**Is your feature request related to a problem? Please describe.** There is the new conflict strategy `replace`, which removes jobs with the same `unique_args` from the queue and adds a...

enhancement
feature request

Been thinking a little on the way the worker is configured. There was a suggestion on how to rather than use the `UntilAndWhileExecuting` lock that two separately configured workers with...

question
help wanted

Hey guys, I would like to request a new feature: ``` ruby sidekiq_options unique: :around_executing ``` with 2 optional times: (`lock_before_executing` & `lock_after_executing`) ``` ruby sidekiq_options unique: :around_executing, lock_before_executing: 30.minutes,...

enhancement
feature request

Sidekiq recently released a beta version of their new major release. https://www.mikeperham.com/2022/09/27/sidekiq-7.0-beta-now-available/ https://github.com/mperham/sidekiq/blob/main/docs/7.0-Upgrade.md https://github.com/mperham/sidekiq/blob/main/docs/internals.md The current version of this gem is not compatible with the new version, since there were...

**Describe the bug** 1. Attempt to queue a job 2. Receive an error that the job can't be enqueued because an existing lock exists. 3. search web UI for cited...

**Describe the bug** I'm not sure if I am doing something wrong. The unique jobs used to work but recently upgraded sidekiq and unique jobs. Below is a job that...

**Describe the bug** Both [sidekiq-lock](https://github.com/rwojsznis/sidekiq-lock) and `sidekiq-uniq-jobs` use the `:lock` key in `sidekiq_options`. This makes them impossible (or dangerous?) to use simultaneously **Expected behavior** Be able to use both of...

**Describe the bug** In my configuration the deadlock was not supposed to happen but still was happening, the gem was configured using sidekiq middleware. sidekiq (7.2.1) sidekiq-unique-jobs (8.0.9) **Expected behavior**...