Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f731cfa

Browse files
committed
Fix a couple of bugs with replication slot advancing feature
A review of the code has showed up a couple of issues fixed by this commit: - Physical slots have been using the confirmed LSN position as a start comparison point which is always 0/0, instead use the restart LSN position (logical slots need to use the confirmed LSN position, which was correct). - The actual slot update was incorrect for both physical and logical slots. Physical slots need to use their restart_lsn as base comparison point (confirmed_flush was used because of previous point), and logical slots need to begin reading WAL from restart_lsn (confirmed_flush was used as well), while confirmed_flush is compiled depending on the decoding context and record read, and is the LSN position returned back to the caller. - Never return 0/0 if a slot cannot be advanced. This way, if a slot is advanced while the activity is idle, then the same position is returned to the caller over and over without raising an error. Instead return the LSN the slot has been advanced to. With repetitive calls, the same position is returned hence caller can directly monitor the difference in progress in bytes by doing simply LSN difference calculations, which should be monotonic. Note that as the slot is owned by the backend advancing it, then the read of those fields is fine lock-less, while updates need to happen while the slot mutex is held, so fix that on the way as well. Other locks for in-memory data of replication slots have been already fixed previously. Some of those issues have been pointed out by Petr and Simon during the patch, while I noticed some of them after looking at the code. This also visibly takes of a recently-discovered bug causing assertion failures which can be triggered by a two-step slot forwarding which first advanced the slot to a WAL page boundary and secondly advanced it to the latest position, say 'FF/FFFFFFF' to make sure that the newest LSN is used as forward point. It would have been nice to drop a test for that, but the set of operators working on pg_lsn limits it, so this is left for a future exercise. Author: Michael Paquier Reviewed-by: Petr Jelinek, Simon Riggs Discussion: https://postgr.es/m/CANP8+jLyS=X-CAk59BJnsxKQfjwrmKicHQykyn52Qj-Q=9GLCw@mail.gmail.com Discussion: https://www.postgresql.org/message-id/2840048a-1184-417a-9da8-3299d207a1d7%40postgrespro.ru
1 parent 321f648 commit f731cfa

File tree

1 file changed

+36
-14
lines changed

1 file changed

+36
-14
lines changed

src/backend/replication/slotfuncs.c

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -318,32 +318,43 @@ pg_get_replication_slots(PG_FUNCTION_ARGS)
318318

319319
/*
320320
* Helper function for advancing physical replication slot forward.
321+
* The LSN position to move to is compared simply to the slot's
322+
* restart_lsn, knowing that any position older than that would be
323+
* removed by successive checkpoints.
321324
*/
322325
static XLogRecPtr
323-
pg_physical_replication_slot_advance(XLogRecPtr startlsn, XLogRecPtr moveto)
326+
pg_physical_replication_slot_advance(XLogRecPtr moveto)
324327
{
325-
XLogRecPtr retlsn = InvalidXLogRecPtr;
328+
XLogRecPtr startlsn = MyReplicationSlot->data.restart_lsn;
329+
XLogRecPtr retlsn = startlsn;
326330

327-
SpinLockAcquire(&MyReplicationSlot->mutex);
328-
if (MyReplicationSlot->data.restart_lsn < moveto)
331+
if (startlsn < moveto)
329332
{
333+
SpinLockAcquire(&MyReplicationSlot->mutex);
330334
MyReplicationSlot->data.restart_lsn = moveto;
335+
SpinLockRelease(&MyReplicationSlot->mutex);
331336
retlsn = moveto;
332337
}
333-
SpinLockRelease(&MyReplicationSlot->mutex);
334338

335339
return retlsn;
336340
}
337341

338342
/*
339343
* Helper function for advancing logical replication slot forward.
344+
* The slot's restart_lsn is used as start point for reading records,
345+
* while confirmed_lsn is used as base point for the decoding context.
346+
* The LSN position to move to is checked by doing a per-record scan and
347+
* logical decoding which makes sure that confirmed_lsn is updated to a
348+
* LSN which allows the future slot consumer to get consistent logical
349+
* changes.
340350
*/
341351
static XLogRecPtr
342-
pg_logical_replication_slot_advance(XLogRecPtr startlsn, XLogRecPtr moveto)
352+
pg_logical_replication_slot_advance(XLogRecPtr moveto)
343353
{
344354
LogicalDecodingContext *ctx;
345355
ResourceOwner old_resowner = CurrentResourceOwner;
346-
XLogRecPtr retlsn = InvalidXLogRecPtr;
356+
XLogRecPtr startlsn = MyReplicationSlot->data.restart_lsn;
357+
XLogRecPtr retlsn = MyReplicationSlot->data.confirmed_flush;
347358

348359
PG_TRY();
349360
{
@@ -384,7 +395,7 @@ pg_logical_replication_slot_advance(XLogRecPtr startlsn, XLogRecPtr moveto)
384395
if (record != NULL)
385396
LogicalDecodingProcessRecord(ctx, ctx->reader);
386397

387-
/* check limits */
398+
/* Stop once the moving point wanted by caller has been reached */
388399
if (moveto <= ctx->reader->EndRecPtr)
389400
break;
390401

@@ -441,7 +452,7 @@ pg_replication_slot_advance(PG_FUNCTION_ARGS)
441452
Name slotname = PG_GETARG_NAME(0);
442453
XLogRecPtr moveto = PG_GETARG_LSN(1);
443454
XLogRecPtr endlsn;
444-
XLogRecPtr startlsn;
455+
XLogRecPtr minlsn;
445456
TupleDesc tupdesc;
446457
Datum values[2];
447458
bool nulls[2];
@@ -472,21 +483,32 @@ pg_replication_slot_advance(PG_FUNCTION_ARGS)
472483
/* Acquire the slot so we "own" it */
473484
ReplicationSlotAcquire(NameStr(*slotname), true);
474485

475-
startlsn = MyReplicationSlot->data.confirmed_flush;
476-
if (moveto < startlsn)
486+
/*
487+
* Check if the slot is not moving backwards. Physical slots rely simply
488+
* on restart_lsn as a minimum point, while logical slots have confirmed
489+
* consumption up to confirmed_lsn, meaning that in both cases data older
490+
* than that is not available anymore.
491+
*/
492+
if (OidIsValid(MyReplicationSlot->data.database))
493+
minlsn = MyReplicationSlot->data.confirmed_flush;
494+
else
495+
minlsn = MyReplicationSlot->data.restart_lsn;
496+
497+
if (moveto < minlsn)
477498
{
478499
ReplicationSlotRelease();
479500
ereport(ERROR,
480501
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
481502
errmsg("cannot move slot to %X/%X, minimum is %X/%X",
482503
(uint32) (moveto >> 32), (uint32) moveto,
483-
(uint32) (startlsn >> 32), (uint32) startlsn)));
504+
(uint32) (minlsn >> 32), (uint32) minlsn)));
484505
}
485506

507+
/* Do the actual slot update, depending on the slot type */
486508
if (OidIsValid(MyReplicationSlot->data.database))
487-
endlsn = pg_logical_replication_slot_advance(startlsn, moveto);
509+
endlsn = pg_logical_replication_slot_advance(moveto);
488510
else
489-
endlsn = pg_physical_replication_slot_advance(startlsn, moveto);
511+
endlsn = pg_physical_replication_slot_advance(moveto);
490512

491513
values[0] = NameGetDatum(&MyReplicationSlot->data.name);
492514
nulls[0] = false;

0 commit comments

Comments
 (0)