From 4ffb4293db58cdc30af7962db22d95df40331d42 Mon Sep 17 00:00:00 2001 From: "kuroda.hayato%40jp.fujitsu.com" Date: Wed, 21 Sep 2022 06:47:55 +0000 Subject: [PATCH v15 3/4] add doc This patch adds descriptions about postgres_fdw.health_check_interval --- doc/src/sgml/postgres-fdw.sgml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index bfd344cdc0..44e4f07dd9 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -1078,6 +1078,32 @@ postgres=# SELECT postgres_fdw_disconnect_all(); + + + postgres_fdw.health_check_interval (integer) + + postgres_fdw.health_check_interval configuration parameter + + + + + Sets the time interval between optional checks that remote servers + are still alive. When losing a remote connection is detected, + the running transaction is aborted. This feature is performed + by polling the socket. + + + This option relies on kernel events exposed by Linux, macOS, + illumos and the BSD family of operating systems, and is not currently available + on other systems. + + + If the value is specified without units, it is taken as milliseconds. + The default value is 0, which disables connection + checks. + + + -- 2.27.0