Re: pgsql: Compute XID horizon for page level index vacuum on primary.

From: Andres Freund <andres(at)anarazel(dot)de>
To: Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
Cc: pgsql-committers(at)lists(dot)postgresql(dot)org, Peter Geoghegan <pg(at)bowt(dot)ie>
Subject: Re: pgsql: Compute XID horizon for page level index vacuum on primary.
Date: 2019-03-28 12:28:47
Message-ID: 20190328122847.ci7nmnook2dlbbqv@alap3.anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On 2019-03-28 17:34:52 +1300, Thomas Munro wrote:
> On Wed, Mar 27, 2019 at 1:06 PM Andres Freund <andres(at)anarazel(dot)de> wrote:
> > Compute XID horizon for page level index vacuum on primary.
>
> Hi Andres,
>
> I have a virtual machine running FreeBSD 12.0 on i386 on which
> contrib/test_decoding consistently self-deadlocks in the "rewrite"
> test, with the stack listed below. You can see that we wait for a
> share lock that we already hold exclusively. Peter Geoghegan spotted
> the problem: this code path shouldn't access syscache, or at least not
> for a catalog table. He suggested something along these lines:
>
> --- a/src/backend/access/heap/heapam.c
> +++ b/src/backend/access/heap/heapam.c
> @@ -6977,7 +6977,10 @@ heap_compute_xid_horizon_for_tuples(Relation rel,
> * simplistic, but at the moment there is no evidence of that
> or any idea
> * about what would work better.
> */
> - io_concurrency =
> get_tablespace_io_concurrency(rel->rd_rel->reltablespace);
> + if (IsCatalogRelation(rel))
> + io_concurrency = 1;
> + else
> + io_concurrency =
> get_tablespace_io_concurrency(rel->rd_rel->reltablespace);
> prefetch_distance = Min((io_concurrency) + 10, MAX_IO_CONCURRENCY);

Hm, good catch. I don't like this fix very much (even if it were
commented), but I don't have a great idea right now. I'm mildly
inclined to take effective_io_concurrency into account even if we can't
use get_tablespace_io_concurrency - that should be doable from a
locking POV.

Do you want to apply the above?

- Andres

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Geoghegan 2019-03-28 15:24:46 Re: pgsql: Compute XID horizon for page level index vacuum on primary.
Previous Message Masahiko Sawada 2019-03-28 10:51:23 Re: pgsql: Use FullTransactionId for the transaction stack.

Browse pgsql-hackers by date

  From Date Subject
Next Message Konstantin Knizhnik 2019-03-28 12:40:47 Multitenancy optimization
Previous Message Andrew Dunstan 2019-03-28 12:24:57 Re: jsonpath