Postgres Queues Actually Scale
- The conventional wisdom around Postgres-backed queues is that they don't scale.
- To handle a large workload, you can't use Postgres, but instead need a dedicated queueing system like RabbitMQ + Celery or Redis + BullMQ.
- There's a reason people say this: queues really are a demanding workload for Postgres.
Unverified
- The conventional wisdom around Postgres-backed queues is that they don't scale.
- To handle a large workload, you can't use Postgres, but instead need a dedicated queueing system like RabbitMQ + Celery or Redis + BullMQ.
- There's a reason people say this: queues really are a demanding workload for Postgres.
Sources: Dbos