diff options
| author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-04-03 11:55:50 -0300 |
|---|---|---|
| committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-04-03 11:55:50 -0300 |
| commit | 4ff695b17d32a9c330952192dbc789d31a5e2f5e (patch) | |
| tree | 1e83f651e13c90928d0ba9337b0c15aa69773ed1 /doc/src | |
| parent | a75fb9b335db0e063ece283ebd207530abe1b53b (diff) | |
Add log_min_autovacuum_duration per-table option
This is useful to control autovacuum log volume, for situations where
monitoring only a set of tables is necessary.
Author: Michael Paquier
Reviewed by: A team led by Naoya Anzai (also including Akira Kurosawa,
Taiki Kondo, Huong Dangminh), Fujii Masao.
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/ref/create_table.sgml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 324d59371a7..be7ebd5f54f 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -881,9 +881,9 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI <literal>toast.</literal>, which can be used to control the behavior of the table's secondary <acronym>TOAST</> table, if any (see <xref linkend="storage-toast"> for more information about TOAST). - Note that the TOAST table inherits the - <literal>autovacuum_*</literal> values from its parent table, if there are - no <literal>toast.autovacuum_*</literal> settings set. + Note that the TOAST table uses the parameter values defined for + the main table, for each parameter applicable to TOAST tables and + for which no value is set in the TOAST table itself. </para> <variablelist> @@ -1061,12 +1061,22 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI </varlistentry> <varlistentry> + <term><literal>log_autovacuum_min_duration</literal>, <literal>toast.log_autovacuum_min_duration</literal> (<type>integer</type>)</term> + <listitem> + <para> + Custom <xref linkend="guc-log-autovacuum-min-duration"> parameter. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><literal>user_catalog_table</literal> (<type>boolean</type>)</term> <listitem> <para> Declare a table as an additional catalog table, e.g. for the purpose of logical replication. See <xref linkend="logicaldecoding-capabilities"> for details. + This parameter cannot be set for TOAST tables. </para> </listitem> </varlistentry> |
