wal_sender_timeout

指定终止复制连接的时间间隔的GUC

wal_sender_timeout 是一个配置参数,用于指定在多长时间后终止非活动的复制连接。

wal_sender_timeoutPostgreSQL 9.3中添加。

默认值

wal_sender_timeout 的默认值为:60秒。

用法

为单个连接设置

PostgreSQL 12开始,可以为单个连接设置wal_sender_timeout。这可以通过在primary_conninfo字符串中传递wal_sender_timeout作为连接选项来实现,例如:

primary_conninfo = 'host=192.168.1.42 port=5432 user=foo password=bar options=''-c wal_sender_timeout=5000'''

变更历史

分类

GUC配置项WAL

另请参阅

wal_receiver_timeout,wal_receiver_status_interval

反馈

提交您对"wal_sender_timeout"的任何评论、建议或更正 此处