aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/postgresql.conf.sample
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-07-30 15:17:26 +0000
committerBruce Momjian <bruce@momjian.us>2005-07-30 15:17:26 +0000
commit1f54d43075d8c457935cd9fe8adfea949104995d (patch)
tree1dae9895c68da69a255b08d5e5f349ea8cdc0a3f /src/backend/utils/misc/postgresql.conf.sample
parentb2b6548c79eb63faf1d0939893b3bf183d5410a1 (diff)
downloadpostgresql-1f54d43075d8c457935cd9fe8adfea949104995d.tar.gz
postgresql-1f54d43075d8c457935cd9fe8adfea949104995d.zip
Add GUC variables to control keep-alive times for idle, interval, and
count. Oliver Jowett
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index db8c28814db..5eabe09552e 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -70,6 +70,11 @@
#krb_caseins_users = off
#krb_srvname = 'postgres'
+# - TCP Keepalives -
+# see 'man 7 tcp' for details
+#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; 0 uses the system default.
+#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; 0 uses the system default.
+#tcp_keepalives_count = 0 # TCP_KEEPCNT, in seconds; 0 uses the system default.
#---------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)