diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2015-10-20 13:33:39 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2015-10-20 13:34:11 -0400 |
commit | 2bfd2fe58db88abf86a920fe532b80cf2ea84a7f (patch) | |
tree | 311ad10cc45d21496f0c20fccd24e1f3a3bcac9d | |
parent | b3967f89370755176f4da03fb042e7e3e45999b5 (diff) | |
download | postgresql-2bfd2fe58db88abf86a920fe532b80cf2ea84a7f.tar.gz postgresql-2bfd2fe58db88abf86a920fe532b80cf2ea84a7f.zip |
doc: Move documentation of max_wal_size to better position
-rw-r--r-- | doc/src/sgml/config.sgml | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index bcaee6eefb6..f2f4b1d13d8 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -2398,27 +2398,6 @@ include_dir 'conf.d' <title>Checkpoints</title> <variablelist> - <varlistentry id="guc-max-wal-size" xreflabel="max_wal_size"> - <term><varname>max_wal_size</varname> (<type>integer</type>) - <indexterm> - <primary><varname>max_wal_size</> configuration parameter</primary> - </indexterm> - </term> - <listitem> - <para> - Maximum size to let the WAL grow to between automatic WAL - checkpoints. This is a soft limit; WAL size can exceed - <varname>max_wal_size</> under special circumstances, like - under heavy load, a failing <varname>archive_command</>, or a high - <varname>wal_keep_segments</> setting. The default is 1 GB. - Increasing this parameter can increase the amount of time needed for - crash recovery. - This parameter can only be set in the <filename>postgresql.conf</> - file or on the server command line. - </para> - </listitem> - </varlistentry> - <varlistentry id="guc-checkpoint-timeout" xreflabel="checkpoint_timeout"> <term><varname>checkpoint_timeout</varname> (<type>integer</type>) <indexterm> @@ -2475,6 +2454,27 @@ include_dir 'conf.d' </listitem> </varlistentry> + <varlistentry id="guc-max-wal-size" xreflabel="max_wal_size"> + <term><varname>max_wal_size</varname> (<type>integer</type>) + <indexterm> + <primary><varname>max_wal_size</> configuration parameter</primary> + </indexterm> + </term> + <listitem> + <para> + Maximum size to let the WAL grow to between automatic WAL + checkpoints. This is a soft limit; WAL size can exceed + <varname>max_wal_size</> under special circumstances, like + under heavy load, a failing <varname>archive_command</>, or a high + <varname>wal_keep_segments</> setting. The default is 1 GB. + Increasing this parameter can increase the amount of time needed for + crash recovery. + This parameter can only be set in the <filename>postgresql.conf</> + file or on the server command line. + </para> + </listitem> + </varlistentry> + <varlistentry id="guc-min-wal-size" xreflabel="min_wal_size"> <term><varname>min_wal_size</varname> (<type>integer</type>) <indexterm> |