https://www.bytebase.com/blog/postgres-19-features-im-excited-about/
Postgres 19 Features I'm Excited About â An opinionated run-through of some v19 highlights, including pg_plan_advice, DDL extraction functions, online REPACK/REPACK CONCURRENTLY, and observability improvements.
4 months ago
https://richyen.com/postgres/2026/05/04/postgres_job_queue.html
The Potential Consequences of Using Postgres as a Job Queue â At âsmall scaleâ itâs fine, but when do the wheels start to fall off, and what are the alternatives? Richard has some pragmatic pointers.
4 months ago
https://www.figma.com/blog/pgkeeper-building-the-bouncer-we-needed-for-postgres/
How Figma Built the Bouncer It Needed for Postgres â Figma outgrew PgBouncer, evaluated PGCat, and ended up building its own pooler (PGKeeper) with Go and PGX. Itâs not public, but they go deep into the design: it exposes gRPC to clients rather than acting as a PG wire-protocol pooler, so each query has metadata to use for priority-based admission control, load shedding & fair sharing.
4 months ago
https://thebuild.com/blog/2026/05/01/two-hundred-and-twelve-things/
Two Hundred and Twelve Things â With 212 entries in the draft Postgres 19 release notes being potentially overwhelming, Christophe boiled it down to the âload-bearingâ items, while explaining that while v19 has no single "marquee user-facing feature", itâs âexactly what a good database release looks like.â
4 months ago
https://vondra.me/posts/how-are-committers-selected/
How Are Postgres Committers Selected? â A Postgres committer explains how people are selected to join this distinguished group.
#postgres
#committer
#core team
#development
#process
#community
4 months ago
https://www.pgedge.com/blog/it-depends-using-session-variables-in-postgres
It Depends: Using Session Variables in Postgres â Youâve probably used SET to tweak configuration parameters, but did you know you can use it to store your own session variables?
4 months ago
https://github.com/rogerwelin/pg_column_tetris
pg_column_tetris: Enforce Optimal Column Alignment to Minimize Row Padding Waste â Postgres aligns columns to specific byte boundaries for efficiency, inserting âpaddingâ to fill the gaps. This extension can show how many bytes are being lost to padding in existing tables or can warn/block against creating tables with inefficient column ordering.
4 months ago