diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-03-11 15:39:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-03-11 15:39:23 +0000 |
commit | bbd2e68cfb1a5601c1b857e26f7ad7d4956c87d6 (patch) | |
tree | 5737ab35af7831bc0de250fe689b75979973fa72 | |
parent | eb34ffc15b4688a76762a8ce94f30c39cfc7fead (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 38f996ec0ba..b6a6b832a96 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.170 2008/03/10 12:55:13 mha Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.171 2008/03/11 15:39:23 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> |