PostgreSQL 18 Beta 1 Released

7 jkatz05 1 5/8/2025, 2:28:49 PM postgresql.org ↗

Comments (1)

kiwicopple · 6h ago
This release includes Asynchronous I/O (AIO):

https://pganalyze.com/blog/postgres-18-async-io

> Postgres has historically operated under a synchronous I/O model, meaning every read request is a blocking system call. The database must pause and wait for the operating system to return the data before continuing.

> Postgres 18 introduces a new configuration parameter: io_method. This setting determines how read operations are dispatched under the hood, and whether they’re handled synchronously, offloaded to I/O workers, or submitted directly to the kernel via io_uring.

This is a big deal - the blog post has benchmarks showing 2-3x improvements