alt.hn

6/30/2026 at 8:58:41 AM

Database Traffic Control

https://planetscale.com/blog/introducing-database-traffic-control

by religio

7/2/2026 at 6:56:35 AM

Deceptive query plans (eg. due to very specific write shapes), lack of QoS classes (to priorize OLTP requests over OLAP ones without spawning a read replica), manual partitioning that is way too manual, lack of backpressure during replication (WAL accumulate and Postgres continues accepting writes) and lack of first-class leader-election mechanism (eg. something like what sorintlab/stolon does) are my top 5 issues with PostgreSQL. Glad to see that one of my 5 pain point (that I call "QoS classes") is shared and addressed, I'm sure on-call engineers will thank you, this work addresses real operating issues.

by superboum

7/2/2026 at 8:53:52 AM

This is a good example of another thing you get in the box when you simply pay the man.

https://learn.microsoft.com/en-us/sql/relational-databases/r...

by bob1029

7/2/2026 at 2:35:46 PM

We know about Resource Governor and wanted to bring something as good or better to Postgres. SQL Server classifies whole sessions into a budget. Traffic Control classifies individual queries instead. That's better granularity, especially when a pooler multiplexes multiple different workloads into a session. It also opens up more flexible classification, e.g., based on query plan or based on sqlcommenter tags carrying information about client apps, job queues, priority levels, or release versions.

by dukepiki

7/2/2026 at 9:43:59 AM

and keep paying, and paying, and paying... forever.

I worked for a startup who decided on AzureSQL, the costs means they were reluctant to have too many environments and ones of the same size, and the cpu/memory was below what they would have if they had self hosted a free database.

Potgresql has chosen by many PAAS, SAAS and IAAS companies like Superbase, PlanetScale, Cloudflare and to meet there needs they are producing extensions like this one so it's future is very bright.

Supabase have hired the creator of Vitess for example and are making Vitess for Postgresql and making it open source https://supabase.com/blog/multigres-vitess-for-postgres

enjoy your closed source bills.

by khurs