pg_basebackup behavior on non-existent slot - Mailing list pgsql-bugs

From Dimitri Fontaine
Subject pg_basebackup behavior on non-existent slot
Date
Msg-id VI1PR83MB0189818B82C19059CB62E26199A89@VI1PR83MB0189.EURPRD83.prod.outlook.com
Whole thread Raw
Responses Re: pg_basebackup behavior on non-existent slot  (Magnus Hagander <magnus@hagander.net>)
List pgsql-bugs

Hi,

 

When developing pg_auto_failover we found a bug where if the target replication slot given to pg_basebackup does not exist, then a full copy of the source PGDATA is completed before erroring out. You could easily end-up copying 100GB of data over the network just to see pg_basebackup remove them all at the end, and then when using the –progress option, you have to scroll up to the very start of the output to see the error message.

 

Please find attached a patch that shows a way to fix the issue. The patch is missing windows compatibility, I don’t know how to cast the WNOHANG spell on this platform. Please use the patch as you see fit, either inspiration, or maybe something you would like to commit to fix the bug.

 

Here what it looks like without the patch:

 

$ ./src/bin/pg_basebackup/pg_basebackup -p 5501 -D /tmp/bb -X stream -S SlotDoesNotExists -P

pg_basebackup: error: could not send replication command "START_REPLICATION": ERROR:  replication slot "SlotDoesNotExists" does not exist

32971/32971 kB (100%), 1/1 tablespace

pg_basebackup: error: child process exited with exit code 1

pg_basebackup: removing data directory "/tmp/bb"

 

 

Here’s what it looks like with the patch applied locally:

 

$ ./src/bin/pg_basebackup/pg_basebackup -p 5501 -D /tmp/bb -X stream -S SlotDoesNotExists -P

pg_basebackup: error: could not send replication command "START_REPLICATION": ERROR:  replication slot "SlotDoesNotExists" does not exist

pg_basebackup: error: child process exited with exit code 1

pg_basebackup: removing data directory "/tmp/bb"

 

Regards,

-- 

Dimitri Fontaine

PostgreSQL Major Contributor, Citus Data, Microsoft

Author of “The Art of PostgreSQL

Attachment

pgsql-bugs by date:

Previous
From: hpc researcher_mspk
Date:
Subject: Re: BUG #17200: PostgreSQL-Support Profile Guide Optimization(Clang/GCC)?
Next
From: Magnus Hagander
Date:
Subject: Re: pg_basebackup behavior on non-existent slot