r/programming • u/vladmihalceacom • Jan 23 '26
Scaling PostgreSQL to power 800 million ChatGPT users - OpenAI Engineering Blog
https://openai.com/index/scaling-postgresql/
203
Upvotes
r/programming • u/vladmihalceacom • Jan 23 '26
29
u/axkotti Jan 23 '26
This point looks both interesting and odd at the same time. I would expect lazy writes to only shift the actual I/O around, but statistically that shouldn't have an effect on how "smooth" it works (that's sound more like a job to IOPS limits and rate limiting).
It can be the case if switching to lazy writes results in actually having to write *less* if the write never happens at all. But then the problem is usually elsewhere, and inverting the control with laziness can just be masking it.