Re: Assertion failure in SnapBuildInitialSnapshot()

From: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
To: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>
Cc: "Hayato Kuroda (Fujitsu)" <kuroda(dot)hayato(at)fujitsu(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
Subject: Re: Assertion failure in SnapBuildInitialSnapshot()
Date: 2023-01-31 12:37:58
Message-ID: CAD21AoBCJL0dSa_Kn52ASjycXXuC7c=Wf-yzom1tbiOQFKkDZw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Tue, Jan 31, 2023 at 3:59 PM Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
>
> On Tue, Jan 31, 2023 at 3:56 PM Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> wrote:
> >
> > On Tue, Jan 31, 2023 at 11:12 AM Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
> > >
> > > On Mon, Jan 30, 2023 at 9:41 PM Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
> > >
> > > I've attached patches for HEAD and backbranches. Please review them.
> > >
> >
> > Shall we add a comment like the one below in
> > ReplicationSlotsComputeRequiredXmin()?
> > diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c
> > index f286918f69..e28d48bca7 100644
> > --- a/src/backend/replication/slot.c
> > +++ b/src/backend/replication/slot.c
> > @@ -840,6 +840,13 @@ ReplicationSlotsComputeRequiredXmin(bool already_locked)
> >
> > Assert(ReplicationSlotCtl != NULL);
> >
> > + /*
> > + * It is possible that by the time we compute the agg_xmin
> > here and before
> > + * updating replication_slot_xmin, the CreateInitDecodingContext() will
> > + * compute and update replication_slot_xmin. So, we need to acquire
> > + * ProcArrayLock here to avoid retreating the value of
> > replication_slot_xmin.
> > + */
> > +
>
> Agreed. It looks good to me.

Attached updated patches.

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

Attachment Content-Type Size
master_v3-0001-Fix-a-race-condition-of-updating-procArray-replic.patch application/octet-stream 4.7 KB
REL11-12_v3-0001-Fix-a-race-condition-of-updating-procArray-replic.patch application/octet-stream 3.9 KB
REL13-15_v3-0001-Fix-a-race-condition-of-updating-procArray-replic.patch application/octet-stream 4.0 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Sébastien Lardière 2023-01-31 12:52:57 Re: Timeline ID hexadecimal format
Previous Message Drouvot, Bertrand 2023-01-31 11:50:50 Re: Minimal logical decoding on standbys