Re: Add shared buffer hits to pg_stat_io

From: Melanie Plageman <melanieplageman(at)gmail(dot)com>
To: "Drouvot, Bertrand" <bertranddrouvot(dot)pg(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>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Subject: Re: Add shared buffer hits to pg_stat_io
Date: 2023-03-06 15:38:13
Message-ID: CAAKRu_ae5R5PL2XhOkB-ckyv3s7JMojK8YG9xt-JE6ey3YogJA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Thanks for the review!

On Tue, Feb 28, 2023 at 7:36 AM Drouvot, Bertrand
<bertranddrouvot(dot)pg(at)gmail(dot)com> wrote:
> BufferDesc *
> LocalBufferAlloc(SMgrRelation smgr, ForkNumber forkNum, BlockNumber blockNum,
> - bool *foundPtr, IOContext *io_context)
> + bool *foundPtr, IOContext io_context)
> {
> BufferTag newTag; /* identity of requested block */
> LocalBufferLookupEnt *hresult;
> @@ -128,14 +128,6 @@ LocalBufferAlloc(SMgrRelation smgr, ForkNumber forkNum, BlockNumber blockNum,
> hresult = (LocalBufferLookupEnt *)
> hash_search(LocalBufHash, &newTag, HASH_FIND, NULL);
>
> - /*
> - * IO Operations on local buffers are only done in IOCONTEXT_NORMAL. Set
> - * io_context here (instead of after a buffer hit would have returned) for
> - * convenience since we don't have to worry about the overhead of calling
> - * IOContextForStrategy().
> - */
> - *io_context = IOCONTEXT_NORMAL;
>
>
> It looks like that io_context is not used in LocalBufferAlloc() anymore and then can be removed as an argument.

Good catch. Updated patchset attached.

> > While adding this, I noticed that I had made all of the IOOP columns
> > int8 in the view, and I was wondering if this is sufficient for hits (I
> > imagine you could end up with quite a lot of those).
> >
>
> I think that's ok and bigint is what is already used for pg_statio_user_tables.heap_blks_hit for example.

Ah, I was silly and didn't understand that the SQL type int8 is eight
bytes and not 1. That makes a lot of things make more sense :)

https://www.postgresql.org/docs/current/xfunc-c.html#XFUNC-C-TYPE-TABLE

- Melanie

Attachment Content-Type Size
v2-0002-Track-shared-buffer-hits-in-pg_stat_io.patch text/x-patch 12.0 KB
v2-0001-Reorder-pgstatfuncs-local-enum.patch text/x-patch 1.0 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jelte Fennema 2023-03-06 15:42:13 Re: [EXTERNAL] Re: Add non-blocking version of PQcancel
Previous Message Bharath Rupireddy 2023-03-06 15:36:48 Re: Combine pg_walinspect till_end_of_wal functions with others