PostgreSQL backend
BullMQ v6 can store queues in PostgreSQL instead of Redis. bull-board reads those queues the same way it reads Redis ones, so there is nothing extra to configure on the board.
Setup
Install pg alongside BullMQ v6, then pass createPostgresBackend as the third argument to Queue:
That is the whole difference: the third argument on Queue. BullMQAdapter takes the queue as it always has.
ioredis is an optional peer dependency of BullMQ v6, so a Postgres-only app does not need it installed.
What the dashboard shows
Job listing, counts, adding, retrying, cleaning, pausing, promoting, flows and the schedulers view all behave exactly as they do on Redis.
One panel is Redis-specific and adapts:
Datastore details reports what Postgres can answer, and retitles itself:
Memory usage, peak memory, fragmentation ratio and replication mode are left out rather than filled with a number that means something else. pg_database_size measures disk, not memory.
Mixing backends
A single board can hold Redis-backed and Postgres-backed queues at once. Each queue answers for itself:
The datastore details panel describes the first registered queue, so put the one you care about first if you mix them.
Not covered
@bull-board/metrics is Redis-only. It scans Redis sorted sets directly to build throughput and latency history, so it has no Postgres implementation yet. Everything else on the board works.