Disable WAL streaming on standby node via new boolean tag "nostream" (#2842)

Add support for ``nostream`` tag. If set to ``true`` the node will not use replication protocol to stream WAL. It will rely instead on archive recovery (if ``restore_command`` is configured) and ``pg_wal``/``pg_xlog`` polling. It also disables copying and synchronization of permanent logical replication slots on the node itself and all its cascading replicas. Setting this tag on primary node has no effect.
This commit is contained in:
Grigory Smolkin
2024-03-20 10:10:53 +01:00
committed by GitHub
parent 014777b20a
commit b09af642e6
14 changed files with 119 additions and 11 deletions
+1
View File
@@ -136,3 +136,4 @@ tags:
noloadbalance: false
clonefrom: false
nosync: false
nostream: false