29.11. Configuration Settings (original) (raw)
Logical replication requires several configuration options to be set. Most options are relevant only on one side of the replication. However, max_replication_slots
is used on both the publisher and the subscriber, but it has a different meaning for each.
29.11.1. Publishers #
wal_level must be set to logical
.
max_replication_slots must be set to at least the number of subscriptions expected to connect, plus some reserve for table synchronization.
max_wal_senders should be set to at least the same as max_replication_slots
, plus the number of physical replicas that are connected at the same time.
Logical replication walsender is also affected by wal_sender_timeout.