PostgreSQL DB Synchronous Replication

 PostgreSQL DB Synchronous Replication


Convert streaming default asynch streaming replication to synch replication.

alter system set synchronous_standby_names to '*';

restart database



Reset from synch replication to asynch streaming replication

alter system reset all;

restart database

Comments