Re: [BUG] Logical replication failure "ERROR: could not map filenode "base/13237/442428" to relation OID" with catalog modifying txns

From: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
To: "shiy(dot)fnst(at)fujitsu(dot)com" <shiy(dot)fnst(at)fujitsu(dot)com>
Cc: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>, "Drouvot, Bertrand" <bdrouvot(at)amazon(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, "Oh, Mike" <minsoo(at)amazon(dot)com>
Subject: Re: [BUG] Logical replication failure "ERROR: could not map filenode "base/13237/442428" to relation OID" with catalog modifying txns
Date: 2022-07-17 12:58:36
Message-ID: CAD21AoAUx28e-1YQDA6Uhda+=jkidAy+HY8Zv5SYjtXpRcBiVg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Fri, Jul 15, 2022 at 3:32 PM shiy(dot)fnst(at)fujitsu(dot)com
<shiy(dot)fnst(at)fujitsu(dot)com> wrote:
>
> On Mon, Jul 11, 2022 9:54 PM Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
> >
> > I've attached an updated patch, please review it.
> >
>
> Thanks for your patch. Here are some comments for the REL14-v1 patch.
>
> 1.
> + Size sz = sizeof(TransactionId) * nxacts;;
>
> There is a redundant semicolon at the end.
>
> 2.
> + workspace = MemoryContextAlloc(rb->context, rb->n_initial_running_xacts);
>
> Should it be:
> + workspace = MemoryContextAlloc(rb->context, sizeof(TransactionId) * rb->n_initial_running_xacts);
>
> 3.
> + /* bound check if there is at least one transaction to be removed */
> + if (NormalTransactionIdPrecedes(rb->initial_running_xacts[0],
> + running->oldestRunningXid))
> + return;
> +
>
> Here, I think it should return if rb->initial_running_xacts[0] is older than
> oldestRunningXid, right? Should it be changed to:
>
> + if (!NormalTransactionIdPrecedes(rb->initial_running_xacts[0],
> + running->oldestRunningXid))
> + return;
>
> 4.
> + if ((parsed->xinfo & XACT_XINFO_HAS_INVALS) != 0)
>
> Maybe we can change it like the following, to be consistent with other places in
> this file. It's also fine if you don't change it.
>
> + if (parsed->xinfo & XACT_XINFO_HAS_INVALS)

Thank you for the comments!

I've attached patches for all supported branches including the master.

Regards,

--
Masahiko Sawada
EDB: https://www.enterprisedb.com/

Attachment Content-Type Size
REL13-v6-0001-Fix-catalog-lookup-with-the-wrong-snapshot-during.patch application/octet-stream 15.2 KB
REL12-v6-0001-Fix-catalog-lookup-with-the-wrong-snapshot-during.patch application/octet-stream 15.2 KB
REL14-v6-0001-Fix-catalog-lookup-with-the-wrong-snapshot-during.patch application/octet-stream 15.1 KB
REL11-v6-0001-Fix-catalog-lookup-with-the-wrong-snapshot-during.patch application/octet-stream 15.1 KB
REL10-v6-0001-Fix-catalog-lookup-with-the-wrong-snapshot-during.patch application/octet-stream 14.9 KB
master-v6-0001-Add-catalog-modifying-transactions-to-logical-dec.patch application/octet-stream 26.1 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Justin Pryzby 2022-07-17 14:01:46 Re: proposal: possibility to read dumped table's name from file
Previous Message Simon Riggs 2022-07-17 09:58:26 Re: Allowing REINDEX to have an optional name