mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
Fix inconsistent elevel in pg_sync_replication_slots() retry logic.
The commit 0d2d4a0ec3 allowed pg_sync_replication_slots() to retry sync
attempts, but missed a case, when WAL prior to a slot's
confirmed_flush_lsn is not yet flushed locally.
By changing the elevel from ERROR to LOG, we allow the sync loop to
continue. This provides the opportunity for the slot to be synchronized
once the standby catches up with the necessary WAL.
Author: Zhijie Hou <houzj.fnst@fujitsu.com>
Reviewed-by: shveta malik <shveta.malik@gmail.com>
Reviewed-by: Amit Kapila <amit.kapila16@gmail.com>
Discussion: https://postgr.es/m/CAFPTHDZAA+gWDntpa5ucqKKba41=tXmoXqN3q4rpjO9cdxgQrw@mail.gmail.com
This commit is contained in:
parent
01d485b142
commit
f1ddaa1535
2 changed files with 8 additions and 2 deletions
|
|
@ -1495,7 +1495,9 @@ postgres=# SELECT '0/0'::pg_lsn + pd.segment_number * ps.setting::int + :offset
|
|||
Synchronize the logical failover replication slots from the primary
|
||||
server to the standby server. This function can only be executed on the
|
||||
standby server. Temporary synced slots, if any, cannot be used for
|
||||
logical decoding and must be dropped after promotion. See
|
||||
logical decoding and must be dropped after promotion. This function
|
||||
retries cyclically until all the failover slots that existed on
|
||||
primary at the start of the function call are synchronized. See
|
||||
<xref linkend="logicaldecoding-replication-slots-synchronization"/> for details.
|
||||
Note that this function cannot be executed if
|
||||
<link linkend="guc-sync-replication-slots"><varname>
|
||||
|
|
|
|||
|
|
@ -34,6 +34,10 @@
|
|||
* RS_TEMPORARY. Once the decoding from corresponding LSNs can reach a
|
||||
* consistent point, they will be marked as RS_PERSISTENT.
|
||||
*
|
||||
* If the WAL prior to the remote slot's confirmed_flush_lsn has not been
|
||||
* flushed on the standby, the slot is marked as RS_TEMPORARY. Once the standby
|
||||
* catches up and flushes that WAL, the slot will be marked as RS_PERSISTENT.
|
||||
*
|
||||
* The slot sync worker waits for some time before the next synchronization,
|
||||
* with the duration varying based on whether any slots were updated during
|
||||
* the last cycle. Refer to the comments above wait_for_slot_activity() for
|
||||
|
|
@ -218,7 +222,7 @@ update_local_synced_slot(RemoteSlot *remote_slot, Oid remote_dbid)
|
|||
* Can get here only if GUC 'synchronized_standby_slots' on the
|
||||
* primary server was not configured correctly.
|
||||
*/
|
||||
ereport(AmLogicalSlotSyncWorkerProcess() ? LOG : ERROR,
|
||||
ereport(LOG,
|
||||
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
|
||||
errmsg("skipping slot synchronization because the received slot sync"
|
||||
" LSN %X/%08X for slot \"%s\" is ahead of the standby position %X/%08X",
|
||||
|
|
|
|||
Loading…
Reference in a new issue