Re: [HACKERS] make async slave to wait for lsn to be replayed
Alexander Korotkov <aekorotkov@gmail.com>
Hi Amit, Hi Bharath, On Sat, Mar 16, 2024 at 5:05 PM Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com> wrote: > On Sat, Mar 16, 2024 at 4:26 PM Amit Kapila <amit.kapila16@gmail.com> wrote: > > In general, it seems this patch has been stuck for a long time on the > > decision to choose an appropriate UI (syntax), and we thought of > > moving it further so that the other parts of the patch can be > > reviewed/discussed. So, I feel before pushing this we should see > > comments from a few (at least two) other senior members who earlier > > shared their opinion on the syntax. I know we don't have much time > > left but OTOH pushing such a change (where we didn't have a consensus > > on syntax) without much discussion at this point of time could lead to > > discussions after commit. > > +1 to gain consensus first on the syntax changes. With this, we might > be violating the SQL standard for explicit txn commands (I stand for > correction about the SQL standard though). Thank you for your feedback. Generally, I agree it's correct to get consensus on syntax first. And yes, this patch has been here since 2016. We didn't get consensus for syntax for 8 years. Frankly speaking, I don't see a reason why this shouldn't take another 8 years. At the same time the ability to wait on standby given LSN is replayed seems like pretty basic and simple functionality. Thus, it's quite frustrating it already took that long and still unclear when/how this could be finished. My current attempt was to commit minimal implementation as less invasive as possible. A new clause for BEGIN doesn't require additional keywords and doesn't introduce additional statements. But yes, this is still a new qual. And, yes, Amit you're right that even if I had committed that, there was still a high risk of further debates and revert. Given my specsis about agreement over syntax, I'd like to check another time if we could go without new syntax at all. There was an attempt to implement waiting for lsn as a function. But function holds a snapshot, which could prevent WAL records from being replayed. Releasing a snapshot could break the parent query. But now we have procedures, which need a dedicated statement for the call and can even control transactions. Could we implement a waitlsn in a procedure that: 1. First, check that it was called with non-atomic context (that is, it's not called within a transaction). Trigger error if called with atomic context. 2. Release a snapshot to be able to wait without risk of WAL replay stuck. Procedure is still called within the snapshot. It's a bit of a hack to release a snapshot, but Vacuum statements already do so. Amit, Bharath, what do you think about this approach? Is this a way to go? ------ Regards, Alexander Korotkov
Commits
-
Ensure standby promotion point in 043_wal_replay_wait.pl
- 2520226c953c 18.0 landed
-
Minor cleanup related to pg_wal_replay_wait() procedure
- 85b98b8d5a48 18.0 landed
-
Adjust pg_wal_replay_wait() procedure behavior on promoted standby
- 867d396ccd2a 18.0 landed
-
pg_wal_replay_wait(): Fix typo in the doc
- 8036d73ae3d4 18.0 landed
-
Implement pg_wal_replay_wait() stored procedure
- 3c5db1d6b016 18.0 landed
- 06c418e163e9 17.0 landed
-
Revert: Implement pg_wal_replay_wait() stored procedure
- 772faafca1b2 17.0 landed
-
Call WaitLSNCleanup() in AbortTransaction()
- 74eaf66f988c 17.0 landed
-
Clarify what is protected by WaitLSNLock
- ee79928441e7 17.0 landed
-
Use an LWLock instead of a spinlock in waitlsn.c
- 25f42429e2ff 17.0 landed
-
Use the pairing heap instead of a flat array for LSN replay waiters
- bf1e65080629 17.0 landed
-
Minor improvements for waitlsn.c
- e37662f22158 17.0 landed
-
Make the order of the header file includes consistent
- 97d85be36544 17.0 cited