(no title)
pgaddict | 5 months ago
With io_uring everything happens in the backend process, and so consumes some of the CPU time that might otherwise be spent executing the query. All the checksum verification, memcpy into shared buffers, etc. happen in the backend. And those things can be quite expensive. With worker this happens in the other processes, spreading the overhead.
Of course, on truly I/O-bound workload (actually waiting on the I/O), this may not be a huge difference. For warmed-up cases it may be more significant.
ozgrakkurt|5 months ago
But this is more difficult than spawning thousands of os threads and running sync workers on them
pgaddict|5 months ago
Some of these limitations are mostly due to Postgres design, no doubt about that.