Skip to main content

Questions tagged [bull]

The tag has no usage guidance, but it has a tag wiki.

0 votes
0 answers
10 views

Expert Indicator (EA) not returning proper signal value

I am developing a simple Expert Indicator (EA) to analyze Forex chart and need assistance with the indicator signals. The code compiled without errors, but once initialized and tsignal is defaulted ...
Johnny Sandaire's user avatar
0 votes
0 answers
34 views

Nodejs and Bull queue - Issue with moveToFailed function reprocessing jobs and blocking queue

I was dabbling into bull queue because I was going to incorporate it into my project. The scenario in my project is that every job can be retried once (i.e. if it fails a second time, it should be ...
Haris Ali's user avatar
0 votes
0 answers
26 views

Bull queue job with fetch blocking the node event loop?

we have started to use Bull queue to process our background tasks (Heroku platform, Node.js, Redis). Time to time it happens that some job gets stuck in the active state and no other tasks are being ...
Arey Jeremy's user avatar
0 votes
1 answer
45 views

BullMQ and NestJS - Manage Queue Names

I'm building a application using BullMQ and NestJS. It's all working fine, but there is something bugging me. When register a new queue on my application I do something like that: @Module({ ...
yuridamata's user avatar
0 votes
1 answer
44 views

Nest can't resolve dependencies when using Queue inside Service and vice-versa

I have the following code: transaction.processor.ts import { Process, Processor } from '@nestjs/bull'; import { TransactionService } from '@src/modules/transaction/transaction.service'; import { Job }...
Korer's user avatar
  • 67
0 votes
1 answer
91 views

nestjs bullmq consumer does not process the job

I have 2 Nodejs services that communicate using Bullmq with each other. Unfortunately, the processor function is not invoked and all the messages lie as waiting in the queue as I check with Bullboard. ...
iRestMyCaseYourHonor's user avatar
0 votes
0 answers
24 views

Connecting node-bull to redis in codesandbox - MaxRetriesPerRequestError

I'm trying to get example code for a nodejs application using bull running in codesandbox working but struggling to get the application to connect to its redis backend, getting a message Error: ...
rnorto's user avatar
  • 1
1 vote
0 answers
88 views

Is the Bull queue in NestJS the best solution for this situation? (best practice)

I have a back-end built with NestJS and MongoDB, where I'm utilizing microservices to communicate with other services. I have a POST endpoint that handles complex logic: First, I retrieve data from ...
imaddine's user avatar
0 votes
0 answers
63 views

Problem with bullmq and job's not starting possibly based on load?

I'm currently building an IMAP processor for iCloud mail because Apple's is so lame at processing rules. I'm only testing so there is not much load, but still I can repeatably start and stop the bull-...
Peter Kellner's user avatar
0 votes
0 answers
70 views

NestJS/Bull Queue consumers doesnt trigger properly

I have a simple queue consumer below. @Processor('action') export class ActionConsumer { constructor() {} @Process() async transcode(job: Job<any>) { console.log('action:', job....
Emin TATLI's user avatar
0 votes
1 answer
203 views

Nestjs Cron-job using bullmq doesn't work

I implemented cron-job using bullmq in nestjs back-end. Producer code: import { Queue } from 'bullmq'; import { BullQueues, BullWorkers } from '../../../../../apps/api-server/src/shared/utils/...
Eric Ryan's user avatar
0 votes
1 answer
309 views

How do you register multiple queues in Bull Board with NestJS

Does anyone know how to register multiple queues with Bullboard Module and NestJS. Every documentation I have found show an example of how to register a single queue as seen below: Bullboard Docs: ...
Aaron's user avatar
  • 2,542
0 votes
1 answer
28 views

Join queue nodeJS

So I'm trying to do a NodeJS code to allow a certain number of people to join a gym session. Issue here is when, for example, I have a session with 1 empty spot and two persons try to join at the ...
Carlos Saiz Orteu's user avatar
0 votes
0 answers
99 views

Persistent Connection Issues with Bull Queue and Redis in Heroku-Deployed Node.js App

ENVIROMENT: Node.js application Redis for caching Bull for queue management Heroku for deployment OVERVIEW: My Node app uses Bull queues with Redis to make api calls to OpenAI's GPT-4 (gpt4_1106) and ...
adamb's user avatar
  • 11
0 votes
0 answers
81 views

how can i find memory leakage in node.js when using bull-Queue

I am running a bull que with cronJob and I am going a parallel of 5000 parallel jobs. Which caused, stuck/breakage for my entire bull job not running... So I tried chrome inspect through node --...
adhil's user avatar
  • 9

15 30 50 per page
1
2 3 4 5
8