From: | Arseniy Mukhin <arseniy(dot)mukhin(dot)dev(at)gmail(dot)com> |
---|---|
To: | Andrey Borodin <x4mmm(at)yandex-team(dot)ru> |
Cc: | PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: Use streaming read I/O in BRIN vacuuming |
Date: | 2025-08-31 19:47:41 |
Message-ID: | CAE7r3MJ0hYznpwezvdrgimqcW6iyDH5op9mocL_VHjgpQdd6kg@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi!
On Sun, Aug 31, 2025 at 8:49 PM Andrey Borodin <x4mmm(at)yandex-team(dot)ru> wrote:
>
> Hi!
>
> > On 31 Aug 2025, at 21:17, Arseniy Mukhin <arseniy(dot)mukhin(dot)dev(at)gmail(dot)com> wrote:
> >
> > PFA the patch that migrates BRIN vacuum to the read stream API.
>
> The patch is nice and straightforward. Looks good to me.
>
Thank you for the review!
> Some notes that do not seem to me problem of this patch:
> 1. This comment is copied 7 times already across codebase.
> "It is safe to use batchmode as block_range_read_stream_cb"
> Maybe we can refactor comments and function names...
Yes, I had similar thoughts, but having these comments at callsites
has its own benefits, there is a thread about these comments [0]...
> 2. Somehow brin_vacuum_scan() avoid dance of getting RelationGetNumberOfBlocks() many times to be entirely sure everything is scanned. Unlike other index vacuums, see btvacuumscan() for example.
If I understand correctly, in other access methods you need to be sure
that you read the relation up to the end, so you don't leave any index
tuples that should be pruned. BRIN doesn't have a prune phase, there
is only a cleanup phase. So it seems it's not a big deal if you miss
several pages that were allocated during the vacuum.
Best regards,
Arseniy Mukhin
From | Date | Subject | |
---|---|---|---|
Next Message | Mikael Kjellström | 2025-08-31 19:55:59 | Re: ecpg test thread/alloc hangs on sidewinder running NetBSD 9.3 |
Previous Message | Bruce Momjian | 2025-08-31 19:14:26 | Re: PG 18 relnotes and RC1 |