Re: pgsql: Use pre-fetching for ANALYZE

From: Stephen Frost <sfrost(at)snowman(dot)net>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: pgsql: Use pre-fetching for ANALYZE
Date: 2022-06-06 18:52:03
Message-ID: 20220606185203.GZ9030@tamriel.snowman.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Greetings,

* Andres Freund (andres(at)anarazel(dot)de) wrote:
> On 2022-06-02 19:30:16 -0700, Andres Freund wrote:
> > On 2021-03-16 18:48:08 +0000, Stephen Frost wrote:
> > > Use pre-fetching for ANALYZE
> > >
> > > When we have posix_fadvise() available, we can improve the performance
> > > of an ANALYZE by quite a bit by using it to inform the kernel of the
> > > blocks that we're going to be asking for. Similar to bitmap index
> > > scans, the number of buffers pre-fetched is based off of the
> > > maintenance_io_concurrency setting (for the particular tablespace or,
> > > if not set, globally, via get_tablespace_maintenance_io_concurrency()).
> >
> > I just looked at this as part of debugging a crash / hang in the AIO patch.
> >
> > The code does:
> >
> > block_accepted = table_scan_analyze_next_block(scan, targblock, vac_strategy);
> >
> > #ifdef USE_PREFETCH
> >
> > /*
> > * When pre-fetching, after we get a block, tell the kernel about the
> > * next one we will want, if there's any left.
> > *
> > * We want to do this even if the table_scan_analyze_next_block() call
> > * above decides against analyzing the block it picked.
> > */
> > if (prefetch_maximum && prefetch_targblock != InvalidBlockNumber)
> > PrefetchBuffer(scan->rs_rd, MAIN_FORKNUM, prefetch_targblock);
> > #endif
> >
> > I.e. we lock a buffer and *then* we prefetch another buffer. That seems like a
> > quite bad idea to me. Why are we doing IO while holding a content lock, if we
> > can avoid it?

At the end, we're doing a posix_fadvise() which is a kernel call but
hopefully wouldn't do actual IO when we call it. Still, agreed that
it'd be better to do that without holding locks and no objection to
making such a change.

> It also seems decidedly not great from a layering POV to do the IO in
> analyze.c. There's no guarantee that the tableam maps blocks in a way that's
> compatible with PrefetchBuffer(). Yes, the bitmap heap scan code does
> something similar, but a) that is opt in by the AM, b) there's a comment
> saying it's quite crufty and should be fixed.

Certainly open to suggestions. Are you thinking it'd make sense to add
a 'prefetch_block' method to TableAmRoutine? Or did you have another
thought?

Thanks!

Stephen

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2022-06-07 19:34:45 pgsql: Fix off-by-one loop termination condition in pg_stat_get_subscri
Previous Message Tom Lane 2022-06-06 15:27:07 pgsql: Don't fail on libpq-generated error reports in pg_amcheck.

Browse pgsql-hackers by date

  From Date Subject
Next Message Justin Pryzby 2022-06-06 18:53:35 Re: [v15 beta] pg_upgrade failed if earlier executed with -c switch
Previous Message Robert Haas 2022-06-06 18:43:51 Re: [PATCH] Expose port->authn_id to extensions and triggers