Questions tagged [bullmq]

BullMQ - Premium Message Queue for NodeJS based on Redis

BullMQ is a Node.js library that implements a fast and robust queue system based on Redis. The library is designed so that it will fulfill the following goals:

  1. Exactly once queue semantics, i.e., attempts to deliver every message exactly one time, but it will deliver at least once in the worst-case scenario*.
  2. Easy to scale horizontally. Add more workers for processing jobs in parallel.
  3. Consistent.
  4. High performant. Try to get the highest possible throughput from Redis by combining efficient .lua scripts and pipelining.
77 questions
0
votes
1 answer

Trying to install bull-repl on Ubuntu 20.4, getting strange npm error

I am trying to install bull-repl package on my Ubuntu 20.4 system via sudo npm i bull-repl -g But I keep getting following error: > node-jq@1.11.2 postinstall /usr/lib/node_modules/bull-repl/node_modules/node-jq > npm run install-binary npm ERR!…
Torsten Barthel
  • 3,059
  • 1
  • 26
  • 22
-2
votes
1 answer

How do I get a js file to run in Next.js backend?

I have a few lines of code in a file that I use to instantiate a worker for bullmq. It works independently from the rest of the server so Next.js never runs it since it's not imported anywhere. e.g. I have the following in a standalone file that I…
Nicholas Wong
  • 198
  • 3
  • 9
1 2 3 4 5
6