GithubHelp home page GithubHelp logo

Job failed without handlers about bull HOT 9 CLOSED

nestjs avatar nestjs commented on April 27, 2024
Job failed without handlers

from bull.

Comments (9)

adikaladik avatar adikaladik commented on April 27, 2024 1

Found an issue. In the project which produces jobs, I removed this piece of code from BullModule.forRoot call and it started working properly.

 processors: [
        (job: Job, done: DoneCallback) => {
          done(null, job.data);
        },
      ],

@fwoelffel thank you for support!

from bull.

fwoelffel avatar fwoelffel commented on April 27, 2024

I tried to adapt my sample application to your usecase by adding a name to the queue but I can't reproduce. What version of nest-bull are you using? Could you share a repository?

from bull.

adikaladik avatar adikaladik commented on April 27, 2024

@fwoelffel, unfortunately, can't share, repo is not public...
version is "nest-bull": "^0.8.0",

from bull.

adikaladik avatar adikaladik commented on April 27, 2024

that is interesting when the first job in queue executes on redis I see the following https://ibb.co/xLQZ9Sd
the job seems to be completed, but the inside error has occurred

from bull.

fwoelffel avatar fwoelffel commented on April 27, 2024

Can you share your AppModule? Could you try to trigger your job somewhere else than in a constructor or a setTimeOut?

from bull.

adikaladik avatar adikaladik commented on April 27, 2024

Module from 1st module which produces jobs:

import { BullModule, InjectQueue } from 'nest-bull';
import { Job, DoneCallback, Queue } from 'bull';
import { Module } from '@nestjs/common';
import { ProcessIntegrationsQueue } from '../cron/AddUsersToQueue';

@Module({
  imports: [
    BullModule.forRoot({
      name: 'integration2',
      options: {
        redis: {
          port: 6379,
          host: '127.0.0.1',
          //password: '4m538Vo8q6ohv8Xzivby8hUbFaipqYK3',
        },
      },
      processors: [
        (job: Job, done: DoneCallback) => {
          done(null, job.data);
        },
      ],
    }),
  ],
  providers: [ProcessIntegrationsQueue],
})
export class QueueModule {}

Module from 2nd project which consumes jobs:

import { BullModule } from 'nest-bull';
import { Job, DoneCallback } from 'bull';
import { Module } from '@nestjs/common';
import { JobProcessor } from '../queue/JobProcessor';


@Module({
  imports: [
    BullModule.forRoot({
      name: 'integration2',
      options: {
        redis: {
          port: 6379,
          host: '127.0.0.1',
          // password: '4m538Vo8q6ohv8Xzivby8hUbFaipqYK3',
        },
      },
    }),
  ],
  providers: [JobProcessor],
})
export class QueueModule {}

Tried to add job as described in doc with API. Situation is the same.
I add job to queue then ran 2nd project with consumer - in redis this job is failed and consumer does not try to work with that.
May this problem related to Redis version? @fwoelffel

from bull.

fwoelffel avatar fwoelffel commented on April 27, 2024

It looks like you're injecting two different queue in your modules. Try to move your BullModule.forRoot call higher in your DI tree. Have a look at https://docs.nestjs.com/modules

from bull.

fwoelffel avatar fwoelffel commented on April 27, 2024

This looks related to OptimalBits/bull#625

from bull.

fwoelffel avatar fwoelffel commented on April 27, 2024

It's nice to hear that we solved your issue 🙂

from bull.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.