diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-03-11 15:39:33 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-03-11 15:39:33 +0000 |
commit | 3d5bc6dc93a70cd19d7186a959b0b9beab2ce0d9 (patch) | |
tree | ac5bef0a9afb10a38be44b4d4f5b28cd4a6b99d1 | |
parent | 899b9c3e044b0cab8ef4d1fbd48f0c012162801f (diff) |
Document that statement_timeout is not recommended in postgresql.conf
because it affects all sessions, including autovacuum.
-rw-r--r-- | doc/src/sgml/config.sgml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 0227c4461bb..2619776931a 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.164.2.1 2008/03/05 17:00:40 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.164.2.2 2008/03/11 15:39:33 momjian Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -3877,6 +3877,12 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; logged. A value of zero (the default) turns off the limitation. </para> + + <para> + Setting <varname>statement_timeout</> in + <filename>postgresql.conf</> is not recommended because it + affects all sessions, including autovacuum. + </para> </listitem> </varlistentry> |