Type: | integer |
Default: | 10 |
Min: | 0 |
Max: | 262143 |
Context: | postmaster |
Restart: | true |
Specifies the maximum number of concurrent connections from standby servers or streaming base backup clients (i.e., the maximum number of simultaneously running WAL sender processes). The default is 10
. The value 0
means replication is disabled. Abrupt disconnection of a streaming client might leave an orphaned connection slot behind until a timeout is reached, so this parameter should be set slightly higher than the maximum number of expected clients so disconnected clients can immediately reconnect. This parameter can only be set at server start. Also, wal_level must be set to replica
or higher to allow connections from standby servers.
When running a standby server, you must set this parameter to the same or higher value than on the master server. Otherwise, queries will not be allowed in the standby server.
Recommendations
On StackOverflow
On pgsql-hackers
- Re: Resetting spilled txn statistics in pg_stat_replication
- Re: pgstat_report_activity() and parallel CREATE INDEX (was: Parallel index creation & pg_stat_activity)
- Re: Minimal logical decoding on standbys
- Re: Why does PostgresNode.pm set such a low value of max_wal_senders?
- Why does PostgresNode.pm set such a low value of max_wal_senders?