bull-board: Bull Board UI stuck on "Loading"

Hi, we have been looking for something to monitor our Bull Queues for quite some time. and I use Bull Board for monitor queues, I’m using Fastift rather than Express, and I have been stuck on Loading… This happened only on production, but on development all going well.

image image

Reproduce:

export const setupBullBoard = (app: NestFastifyApplication) => {
  const bullServerAdapter = new BullFastifyAdapter();
  bullServerAdapter.setBasePath('/queues/ui');

  const queues = Object.values(QUEUES).map(
    (queue) => new BullAdapter(new Queue(queue)),
  );

  createBullBoard({
    queues,
    serverAdapter: bullServerAdapter,
  });

  app.register(bullServerAdapter.registerPlugin(), {
    prefix: '/queues/ui',
    basePath: '',
  });
};

“bull”: “^4.2.1” “@nestjs/core”: “^8.2.5” “@bull-board/fastify”: “^3.9.0”

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 29 (13 by maintainers)

Most upvoted comments

Make sense, but I am getting the same error. The same Redis instance on local is working, the deployed version on AWS gives me 504 after some time of loading, this is the only error that I get, nothing on server logs 😢

CleanShot 2023-01-11 at 14 07 11@2x

why this is closed? I am experiencing the same issue using 4.10.1 and the strangest thing is on local it is working on AWS I am getting 504. 🤷🏻‍♂️

Hi,

I have the same issue with bullboard + fastify on queues that have a large size job payload.

It is not related to the this issue. Can you open a new issue with details (job for example)?