Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl

From: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
To: David Rowley <dgrowleyml(at)gmail(dot)com>
Cc: Masahiko Sawada <msawada(at)postgresql(dot)org>, pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl
Date: 2024-03-26 02:35:43
Message-ID: CAD21AoCzVcAs2KGTqy1W3Dre=tJj3WqmVYoq0BCpfbbmR1SMYA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On Tue, Mar 26, 2024 at 7:16 AM David Rowley <dgrowleyml(at)gmail(dot)com> wrote:
>
> On Thu, 21 Mar 2024 at 14:10, Masahiko Sawada <msawada(at)postgresql(dot)org> wrote:
> >
> > Add TIDStore, to store sets of TIDs (ItemPointerData) efficiently.
>
> > src/backend/access/common/tidstore.c | 463 +++++++++++++++++++++
>
> I was looking at this code and I saw the following:
>
> /* choose the maxBlockSize to be no larger than 1/16 of max_bytes */
> while (16 * maxBlockSize > max_bytes * 1024L)
> maxBlockSize >>= 1;
>
> I saw the "* 1024L" and was confused by it. "max_bytes * 1024L"
> converts the number of bytes into "millibytes" ([1]), which I don't
> think is correct.
>
> Either "max_bytes" is a bad name for this variable or the * 1024L
> should be removed.
>

Right. We discussed it on the original thread too[1]. Since we're
going to change the create API of TidStore, I'm going to fix it along
with the API changes[2]. Even if we don't make the API change, I'll
fix it individually.

Regards,

[1] https://www.postgresql.org/message-id/CANWCAZZTE-14ofsucofTuhFsfuDGBNf%3DNZb22TMYT8bxA41oQQ%40mail.gmail.com
[2] https://www.postgresql.org/message-id/CAD21AoAxXGf7FbuA9jvx%2BXUFrEJUz9JNOmkxF8SLppOOOvhBtg%40mail.gmail.com
Please see v79-0003-Rethink-create-and-attach-APIs-of-shared-TidStor.patch.

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message John Naylor 2024-03-26 03:21:55 Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl
Previous Message Amit Kapila 2024-03-26 00:41:47 Re: pgsql: Track last_inactive_time in pg_replication_slots.