Re: Track IO times in pg_stat_io

From: "Drouvot, Bertrand" <bertranddrouvot(dot)pg(at)gmail(dot)com>
To: Melanie Plageman <melanieplageman(at)gmail(dot)com>
Cc: Pg Hackers <pgsql-hackers(at)postgresql(dot)org>, Maciek Sakrejda <m(dot)sakrejda(at)gmail(dot)com>, Justin Pryzby <pryzby(at)telsasoft(dot)com>, smilingsamay(at)gmail(dot)com, Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>, Lukas Fittl <lukas(at)fittl(dot)com>, Magnus Hagander <magnus(at)hagander(dot)net>, Andres Freund <andres(at)anarazel(dot)de>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Subject: Re: Track IO times in pg_stat_io
Date: 2023-03-07 15:52:37
Message-ID: b5486aa0-e7bc-ada6-3ba0-03d3d29d5a8a@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

On 3/6/23 5:30 PM, Melanie Plageman wrote:
> Thanks for the review!
>
> On Tue, Feb 28, 2023 at 4:49 AM Drouvot, Bertrand
> <bertranddrouvot(dot)pg(at)gmail(dot)com> wrote:
>> On 2/26/23 5:03 PM, Melanie Plageman wrote:
>>> The timings will only be non-zero when track_io_timing is on
>>
>> That could lead to incorrect interpretation if one wants to divide the timing per operations, say:
>>
>> - track_io_timing is set to on while there is already operations
>> - or set to off while it was on (and the number of operations keeps growing)
>>
>> Might be worth to warn/highlight in the "track_io_timing" doc?
>
> This is a good point. I've added a note to the docs for pg_stat_io.

Thanks!

Now I've a second thought: what do you think about resetting the related number
of operations and *_time fields when enabling/disabling track_io_timing? (And mention it in the doc).

That way it'd prevent bad interpretation (at least as far the time per operation metrics are concerned).

Thinking that way as we'd loose some (most?) benefits of the new *_time columns
if one can't "trust" their related operations and/or one is not sampling pg_stat_io frequently enough (to discard the samples
where the track_io_timing changes occur).

But well, resetting the operations could also lead to bad interpretation about the operations...

Not sure about which approach I like the most yet, what do you think?

>> That leads to pgstat_count_io_time() to be called before pgstat_count_io_op() (for the IOOP_EXTEND case) and
>> after pgstat_count_io_op() (for the IOOP_READ case).
>>
>> What about calling them in the same order and so that pgstat_count_io_time() is called before pgstat_count_io_op()?
>>
>> If so, the ordering would also need to be changed in:
>>
>> - FlushRelationBuffers()
>> - register_dirty_segment()
>
> Yes, good point. I've updated the code to use this suggested ordering in
> attached v3.
>

Thanks, this looks good to me.

>> As pgstat_bktype_io_stats_valid() is called only in Assert(), I think that would be a good idea
>> to also check that if counts are not Zero then times are not Zero.
>
> Yes, I think adding some validation around the relationship between
> counts and timing should help prevent developers from forgetting to call
> pg_stat_count_io_op() when calling pgstat_count_io_time() (as relevant).
>
> However, I think that we cannot check that if IO counts are non-zero
> that IO times are non-zero, because the user may not have
> track_io_timing enabled.

Yeah, right.

> We can check that if IO times are not zero, IO
> counts are not zero. I've done this in the attached v3.
>

Thanks, looks good to me.

Regards,

--
Bertrand Drouvot
PostgreSQL Contributors Team
RDS Open Source Databases
Amazon Web Services: https://aws.amazon.com

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dimitry Markman 2023-03-07 16:06:00 Re: some problem explicit_bzero with building PostgreSQL on linux
Previous Message Drouvot, Bertrand 2023-03-07 15:10:07 Re: Add shared buffer hits to pg_stat_io