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

## Description ## Minimal, Working Test code to reproduce the issue. #### (An easy to reproduce test case will dramatically decrease the resolution time.) ## Bull version ## Additional information

## Minimal, Working Test code to reproduce the issue. ` queue.add('nameAAA', { }, { removeOnComplete: true, removeOnFail: true, jobId: 1 }); queue.add('nameBBB', { }, { removeOnComplete: true, removeOnFail: true, jobId:...

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.4.2 to 19.0.3. Release notes Sourced from semantic-release's releases. v19.0.3 19.0.3 (2022-06-09) Bug Fixes log-repo: use the original form of the repo url to remove the need...

wontfix
dependencies

Hi, I'm using bull and have set stalledInterval to 0 (as per documentation, setting to 0 doesn't check for stalled jobs), but it gives me ERR invalid expire time in...

wontfix

## Description I have around 30x queues for different tasks and there is one individual worker logic that is being listened to in each queue. There is one middleware function...

wontfix

Where can I find the docs explaining the production cluster setup for bull? For example, it's not clear how exactly Bull producers and consumers interact with Redis in edge cases,...

wontfix

## Description I have a queue that I'm sending a job to. The job works fine on my local servers, but when I try to run it in my development...

## Description As much as some don't think so, this is very useful. There are cases of APIs that change the usage quota depending on the demand they are receiving,...

enhancement

## Description I have a problem when I define multiple processors and rate limiter for one queue. When I add for example 1000 jobs for one processor, all of them...

wontfix

For example: i'm trying to add long-running job with unique id. Queue processes it ```javascript const job = await queue.getByName("task-sync-qb-data").add( { context }, { jobId: `qb:${organizationId}` } ); logger.warn("Job added...