I need to configure Master - Master Postgresql replication servers. I guess psql 10 or 11 will be used for this.
But I can`t find any information about master-master configuration, only master-slave.
Here is a quick example for logical replication setup:
https://www.postgresql.org/docs/10/logical-replication-quick-setup.html
Final steps are:
CREATE PUBLICATION ...
CREATE SUBSCRIPTION ...
This example looks like master - slave example - one DB instance will "send" data and the second - "receive".
What steps should be for master - master replica? Does anybody have any examples of working configuration?