Re: Adding a '--clean-publisher-objects' option to 'pg_createsubscriber' utility. - Mailing list pgsql-hackers

From David G. Johnston
Subject Re: Adding a '--clean-publisher-objects' option to 'pg_createsubscriber' utility.
Date
Msg-id CAKFQuwbaYnSBc5fgHsoFLW_cUq2u466-3ZpkA+u1Z=-medNgwg@mail.gmail.com
Whole thread Raw
In response to Re: Adding a '--clean-publisher-objects' option to 'pg_createsubscriber' utility.  (Amit Kapila <amit.kapila16@gmail.com>)
Responses Re: Adding a '--clean-publisher-objects' option to 'pg_createsubscriber' utility.
Re: Adding a '--clean-publisher-objects' option to 'pg_createsubscriber' utility.
List pgsql-hackers
On Tue, Mar 18, 2025 at 4:47 AM Amit Kapila <amit.kapila16@gmail.com> wrote:
I don't understand --dry-run part of conversation here. As per
existing code (or with the patch), we seem to be already printing the
publications to be dropped in dry-run mode.

Sorry, that was me making a bad assumption rather than checking first.


I'm still bothered by the last paragraph of the commit message saying to backup these publications when the preceding one claims strongly and unconditionally that they are redundant and serve no purpose.  See my doc changes below (the docs, whatever the form, should suffice for motivating this feature and trying to explain it again in the commit message is redundant).

#define OBJECTTYPE_PUBLICATIONS  0x1

- SimpleStringList remove_objects; /* list of object types to remove */
+ SimpleStringList objecttypes_to_remove; /* list of object types to remove */

- bits32 remove_objects; /* flag to remove objects on subscriber */
+bits32 objecttypes_to_remove; /* flags indicating which object types to remove on subscriber */

printf(_("  -r, --remove=OBJECTTYPE         remove all objects of the specified type from specified\n"
"                                  databases on the subscriber; accepts: publications\n"));

+ * Drop the specified publication of the given database.  s/of/in/ ?  publication in the given database

* Drop all publications on the database.  s/on/in ? publications in the given database

sgml:
How about this flow?

<para>
Remove all objects of the specified type from specified databases on the
target server. Multiple object types can be specified by using multiple
<option>--remove</option> switches.
</para>
<para>
publications: The "all tables" publications established for this subscriber are
always removed; specifying this object type causes all other publications
replicated from the source server to be dropped as well.
</para>
<para>
The objects selected to be dropped are individually logged and do show
up in a --dry-run.  There is no opportunity to affect or stop the dropping
of the selected objects so consider taking a backup of them using pg_dump.
</para>

Just add more paragraphs next to "publications:" as we add more object types.

David J.

pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Add -k/--link option to pg_combinebackup
Next
From: Andres Freund
Date:
Subject: Re: [RFC] Lock-free XLog Reservation from WAL