Re: faulty error handling around pgstat_count_io_op_time()
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Cc: Peter Eisentraut <peter@eisentraut.org>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2026-06-17T00:26:22Z
Lists: pgsql-hackers
Attachments
- v2-0001-Fix-pgstat_count_io_op_time-calls-passing-error-r.patch (text/plain) patch v2-0001
On Mon, Jun 15, 2026 at 06:26:00AM +0000, Bertrand Drouvot wrote: > On Fri, Jun 12, 2026 at 06:01:45PM +0200, Peter Eisentraut wrote: >> There are several places where the return value of pg_pread() or pg_pwrite() >> is passed directly as the byte count to pgstat_count_io_op_time(). The >> bytes argument of pgstat_count_io_op_time() is of type uint64, and so error >> returns of -1 are going to passed as UINT64_MAX and added as such to the >> internal statistics. > > Nice catch! This thread has slipped through, and it looks like I'm involved as of a051e71e28a1. (Please feel free to add me in CC in such cases.) >> I think the correction here would be to move the pgstat_count_io_op_time() >> calls to after the error returns are handled. This is effectively how most >> other code already behaves. For example, most smgr calls don't return on >> error, so you don't get a chance to make any pgstat calls afterwards. It's >> only the open-coded places where we can even do that. > > Sounds reasonable to me and done that way in the attached. In the xlogrecovery.c case, we should care about the short read case. What you are doing here looks OK for this path. In XLogFileInitInternal(), the first pgstat_count_io_op_time() is not completely right, no? pg_pwrite_zeros() or pg_pwrite() could fail, and it does not make sense to me to count data if we have a save_errno, and the files are unlinked in the error path. I'd propose to delay the count() call to happen after the error check is done. This leads me to the v2 attached. This is your v1 plus the extra change for XLogFileInitInternal() when the segments are initialized. -- Michael
Commits
-
Fix pgstat_count_io_op_time() calls passing incorrect information
- 13f940b4b56f 18 (unreleased) landed
- 3048e81308f9 19 (unreleased) landed