BullMQ reference
12 May 2022 (Updated 17 May 2022)
In a nutshell
BullMQ is a Node.js library that provides a queuing system built on top of Redis.
Key terms
Term | Description |
Queue | A collection of jobs waiting to be processed. You may create multiple queues for different types of jobs (e.g., emails, reports, file system clean up) or for jobs with different priorities (e.g., queue for paying customers users vs non-paying users). |
Job | A task that needs to be performed (e.g., send an email, delete unused files, generate a report). You add jobs to a queue. |
Worker | A Unix process that spawns to perform jobs. Need at least one worker in order to process jobs. You can have multiple workers and BullMQ will distribute jobs across them. You assign workers to process a queue. |
Install
You also need to install and run Redis to use BullMQ.
Usage
1. Create a queue
2. Add jobs to a queue
3. Create worker(s) to process a queue
4. Listen for worker events
4.1 Listen for events of a specific worker
4.2 Listen for events of all workers
Features / other notes
- You can retry failed jobs.
- You can assign priorities to queues.
- BullMQ provides automatic recovery from process crashes.
Sources
Tagged:
Node.js tooling
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment