From: | David Rowley <david(dot)rowley(at)2ndquadrant(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | Re: pgsql: Support partition pruning at execution time |
Date: | 2018-04-07 22:59:21 |
Message-ID: | CAKJS1f_c=DLtE6_1e3um_tS8=pHbRY6mw2YrOpSUU6Lqt2nKPw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
On 8 April 2018 at 09:57, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> writes:
>> Support partition pruning at execution time
>
> Buildfarm member lapwing doesn't like this. I can reproduce the
> failures here by setting force_parallel_mode = regress. Kind
> of looks like instrumentation counts aren't getting propagated
> from workers back to the leader?
I'm looking at this now. I've tried adding vacuum (analyze) to the
tables before the queries in order to have relallvisible set so that
the index only scan's "Heap Fetches" becomes stable, but very weirdly
it still sometimes fetches from the heap after having vacuumed.
To help see what's going on while testing this I added:
select relname,relallvisible from pg_Class where relname like 'tprt%'
and relkind = 'r';
just before the:
explain (analyze, costs off, summary off, timing off)
select * from tbl1 join tprt on tbl1.col1 > tprt.col1;
Sometimes I see:
relname | relallvisible
---------+---------------
tprt_1 | 0
tprt_2 | 1
Other times I see:
relname | relallvisible
---------+---------------
tprt_1 | 0
tprt_2 | 0
I thought maybe something might be holding a pin on a page somewhere
and vacuum could be skipping it, so I added a VERBOSE to the vacuum
and I see:
Skipped 0 pages due to buffer pins, 0 frozen pages.
I'd considered just doing: set enable_indexonly_scan = off; for all
these tests, but I don't have an explanation for this vacuum behaviour
yet.
I'll need to dig through the vacuum code that sets the visibility bit
and see if there's some good reason for this. I have a local patch
ready to go for the set enable_indexonlyscan = off;
--
David Rowley http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Stephen Frost | 2018-04-07 23:02:09 | pgsql: Fix EXEC BACKEND + Windows builds for group privs |
Previous Message | Stephen Frost | 2018-04-07 22:12:59 | Re: pgsql: Allow group access on PGDATA |
From | Date | Subject | |
---|---|---|---|
Next Message | David Rowley | 2018-04-07 23:26:07 | Re: pgsql: Support partition pruning at execution time |
Previous Message | Stephen Frost | 2018-04-07 22:42:07 | Re: PATCH: Configurable file mode mask |