Reversing pg_logical replication - Mailing list pgsql-admin

From Craig James
Subject Reversing pg_logical replication
Date
Msg-id CAFwQ8rdGB-jUPtrDXpp-gMgS8guWg8SWSkBjkXy0San3rmvj8w@mail.gmail.com
Whole thread Raw
Responses Re: Reversing pg_logical replication  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
List pgsql-admin
I dug around on the web for comments and tools about how to reverse the master/slave relationship of a pg_logical publisher/subscriber pair without having to start fresh and re-copy all the data. All I found were several discussions that seemed to say, "You can't do it. You have to promote the subscriber to publisher, then blow off the original publisher's tables, make it a subscriber, and start from scratch."

But the create-subscription SQL has a "with (copy_data = false)", which seems to do exactly what I need. So I tried it, and it works fine. For a publish/subscript from servers A --> B, the procedure is:
  1. Shut off activity
  2. delete subscription from B
  3. delete publication from A
  4. create publication on B
  5. create subscription on A with copy_data = false.
It seems simple. It works. Have I overlooked something? For all the hand-wringing I found when others asked about this, I'm worried that I overlooked something.

Thanks,
Craig

--
---------------------------------
Craig A. James
Chief Technology Officer
eMolecules, Inc.
---------------------------------

pgsql-admin by date:

Previous
From: Pierre Ochsenbein
Date:
Subject: Re: PostGIS extension
Next
From: Andres Freund
Date:
Subject: Re: How to avoid the XLog Write to be the performance bottleneck