bull icon indicating copy to clipboard operation
bull copied to clipboard

Premium Queue package for handling distributed jobs and messages in NodeJS.

Results 162 bull issues
Sort by recently updated
recently updated
newest added

Hi! I have bull running a queue on 2 machines with the same redis cluster which is working fine. Both machines take a job from the queue and process it...

BETTER DOC

## Description Bull.js occasionally rejecting new jobs added to the queue. I have a dedicated service hosted on Amazon ECS that interfaces with Bull.js with Amazon managed Redis. I send...

Closes #2353 This upgrades ioredis from v4 to v5. Per the [migration guide](https://github.com/luin/ioredis/wiki/Upgrading-from-v4-to-v5), the breaking changes are: - dropping node v10 (long past LTS window) - dropping support for custom...

Due to the recent popularity of https://upstash.com as a Redis hosting service, we are starting to get reports of people trying Bull and getting all kinds of weird behaviors. Currently,...

enhancement

Bumps [moment](https://github.com/moment/moment) from 2.29.1 to 2.29.4. Changelog Sourced from moment's changelog. 2.29.4 Release Jul 6, 2022 #6015 [bugfix] Fix ReDoS in preprocessRFC2822 regex 2.29.3 Full changelog Release Apr 17, 2022...

dependencies

[](https://issuehunt.io/r/OptimalBits/bull/issues/1034) ## Description Let's say I want to queue a job every time one of my users updates their profile. But if a user makes many rapid updates I don't...

enhancement

Imagine I have a host service and worker. Host creates the job, worker receives it, does it, and marks it as completed, then host remove this job using job.remove(). Here...

enhancement

## Description ```ts queue.process(async (job)=>{ if(needRetry){ await job.retry() // will throw error } }) ``` ## Minimal, Working Test code to reproduce the issue. #### (An easy to reproduce test...

## Description How to prevent Bull from automatically retrying jobs when the machine restarts or crashes My scenario wants unfinished jobs to fail when the machine restarts and doesn't want...

## problem I use the code that is debugging the bull Process using VScode Debug When I'm in Process for a long time the job ends but the same job...