PgQue v0.1 has been released.
PgQue is a zero-bloat Postgres event/message queue implemented in pure SQL and PL/pgSQL. It brings the PgQ architecture, originally developed at Skype, to modern Postgres environments, including managed Postgres platforms where PgQ is not included in the list of supported extensions.
PgQue uses snapshot-based batching and table rotation instead of SKIP LOCKED plus DELETE/UPDATE hot paths. This avoids the dead tuples, VACUUM pressure, index bloat, and performance drift that many in-database queues hit under sustained load.
Highlights:
PgQue is best suited for durable event streams and message queues inside Postgres where stability under sustained load matters more than single-digit-millisecond dispatch latency. The default design typically delivers events in the 1-2 second range, while the SQL function calls themselves remain lightweight.
Repository and documentation:
https://github.com/NikolayS/pgque
Discussion on Hacker News: