Change the compile time default value of sr_check_period from 0 to
10. This means if operating in streaming replication mode, now
streaming replication check is enabled by default. The parameter is
already set to 10 in pgpool.conf.sample-stream. So the only difference
is, when sr_check_period is commented out.
Discussion: https://www.pgpool.net/pipermail/pgpool-hackers/2021-October/004042.html
Default is 0, which means the check is disabled.
-->
ストリーミングレプリケーションの遅延チェックの間隔を秒単位で指定します。
- デフォルト値は0で、これはチェックを行わないことを意味します
+ デフォルト値は10です。
</para>
<para>
<para>
Specifies the time interval in seconds to check the streaming
replication delay.
- Default is 0, which means the check is disabled.
+ The default is 10.
</para>
<para>
CONFIG_VAR_TYPE_INT, false, GUC_UNIT_S
},
&g_pool_config.sr_check_period,
- 0,
+ 10,
0, INT_MAX,
NULL, NULL, NULL
},