Re: Implement waiting for wal lsn replay: reloaded

From: Alexander Korotkov <aekorotkov(at)gmail(dot)com>
To: Xuneng Zhou <xunengzhou(at)gmail(dot)com>
Cc: Álvaro Herrera <alvherre(at)kurilemu(dot)de>, Chao Li <li(dot)evan(dot)chao(at)gmail(dot)com>, pgsql-hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, Andres Freund <andres(at)anarazel(dot)de>, Michael Paquier <michael(at)paquier(dot)xyz>, jian he <jian(dot)universality(at)gmail(dot)com>, Tomas Vondra <tomas(at)vondra(dot)me>, Yura Sokolov <y(dot)sokolov(at)postgrespro(dot)ru>
Subject: Re: Implement waiting for wal lsn replay: reloaded
Date: 2026-01-02 22:53:56
Message-ID: CAPpHfds-KiZRuCruc0jHxLSxLqzKcHJGwOFFA0b_RgaJvtUOEQ@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi, Xuneng!

On Fri, Jan 2, 2026 at 11:17 AM Xuneng Zhou <xunengzhou(at)gmail(dot)com> wrote:
> On Fri, Jan 2, 2026 at 7:42 AM Alexander Korotkov <aekorotkov(at)gmail(dot)com> wrote:
> >
> > On Thu, Jan 1, 2026 at 7:16 PM Álvaro Herrera <alvherre(at)kurilemu(dot)de> wrote:
> > > In 0002 you have this kind of thing:
> > >
> > > > ereport(ERROR,
> > > > errcode(ERRCODE_QUERY_CANCELED),
> > > > - errmsg("timed out while waiting for target LSN %X/%08X to be replayed; current replay LSN %X/%08X",
> > > > + errmsg("timed out while waiting for target LSN %X/%08X to be %s; current %s LSN %X/%08X",
> > > > LSN_FORMAT_ARGS(lsn),
> > > > - LSN_FORMAT_ARGS(GetXLogReplayRecPtr(NULL))));
> > > > + desc->verb,
> > > > + desc->noun,
> > > > + LSN_FORMAT_ARGS(currentLSN)));
> > > > + }
> > >
> > >
> > > I'm afraid this technique doesn't work, for translatability reasons.
> > > Your whole design of having a struct with ->verb and ->noun is not
> > > workable (which is a pity, but you can't really fight this.) You need to
> > > spell out the whole messages for each case, something like
> > >
> > > if (lsntype == replay)
> > > ereport(ERROR,
> > > errcode(ERRCODE_QUERY_CANCELED),
> > > errmsg("timed out while waiting for target LSN %X/%08X to be replayed; current standby_replay LSN %X/%08X",
> > > else if (lsntype == flush)
> > > ereport( ... )
> > >
> > > and so on. This means four separate messages for translation for each
> > > message your patch is adding, which is IMO the correct approach.
> >
> > +1
> > Thank you for catching this, Alvaro. Yes, I think we need to get rid
> > of WaitLSNTypeDesc. It's nice idea, but we support too many languages
> > to have something like this.
> >
>
> Thanks for pointing this out. This approach doesn’t scale to multiple
> languages. While switch statements are more verbose, the extra clarity
> is justified to preserve proper internationalization. Please check the
> updated v12.

I've corrected the patchset. Mostly changed just comments, formatting
etc. I'm going to push it if no objections.

------
Regards,
Alexander Korotkov
Supabase

Attachment Content-Type Size
v13-0001-Extend-xlogwait-infrastructure-with-write-and-fl.patch application/octet-stream 11.8 KB
v13-0004-Use-WAIT-FOR-LSN-in-PostgreSQL-Test-Cluster-wait.patch application/octet-stream 4.9 KB
v13-0003-Add-tab-completion-for-the-WAIT-FOR-LSN-MODE-opt.patch application/octet-stream 3.0 KB
v13-0002-Add-the-MODE-option-to-the-WAIT-FOR-LSN-command.patch application/octet-stream 44.8 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dharin Shah 2026-01-02 23:13:36 [PATCH] tests: verify renamed index functionality in alter_table
Previous Message Corey Huinker 2026-01-02 22:20:30 Re: Can we remove support for standard_conforming_strings = off yet?