summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-09-06 17:50:53 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-09-06 17:50:53 -0400
commitdb88112ce17f05b211cf6e2c50f1dd7107556786 (patch)
tree05012e0c4b461d95e81d702fd05581c330a8234e
parentc8d2bd4e43914f0101e8b6ab53f45520eea13039 (diff)
Doc: small improvements for documentation about VACUUM freezing.
Mostly, explain how row xmin's used to be replaced by FrozenTransactionId and no longer are. Do a little copy-editing on the side. Per discussion with Egor Rogov. Back-patch to 9.4 where the behavioral change occurred. Discussion: <575D7955.6060209@postgrespro.ru>
-rw-r--r--doc/src/sgml/maintenance.sgml42
1 files changed, 32 insertions, 10 deletions
diff --git a/doc/src/sgml/maintenance.sgml b/doc/src/sgml/maintenance.sgml
index 1babd0ec4a9..e2bb6fd63df 100644
--- a/doc/src/sgml/maintenance.sgml
+++ b/doc/src/sgml/maintenance.sgml
@@ -386,7 +386,8 @@
</indexterm>
<para>
- <productname>PostgreSQL</productname>'s MVCC transaction semantics
+ <productname>PostgreSQL</productname>'s
+ <link linkend="mvcc-intro">MVCC</link> transaction semantics
depend on being able to compare transaction ID (<acronym>XID</>)
numbers: a row version with an insertion XID greater than the current
transaction's XID is <quote>in the future</> and should not be visible
@@ -404,13 +405,10 @@
<para>
The reason that periodic vacuuming solves the problem is that
<command>VACUUM</> will mark rows as <emphasis>frozen</>, indicating that
- they were inserted by a transaction which committed sufficiently far in
- the past that the effects of the inserting transaction is certain to be
- visible, from an MVCC perspective, to all current and future transactions.
- <productname>PostgreSQL</> reserves a special XID,
- <literal>FrozenTransactionId</>, which does not follow the normal XID
- comparison rules and is always considered older
- than every normal XID. Normal XIDs are
+ they were inserted by a transaction that committed sufficiently far in
+ the past that the effects of the inserting transaction are certain to be
+ visible to all current and future transactions.
+ Normal XIDs are
compared using modulo-2<superscript>32</> arithmetic. This means
that for every normal XID, there are two billion XIDs that are
<quote>older</> and two billion that are <quote>newer</>; another
@@ -420,16 +418,40 @@
the next two billion transactions, no matter which normal XID we are
talking about. If the row version still exists after more than two billion
transactions, it will suddenly appear to be in the future. To
- prevent this, frozen row versions are treated as if the inserting XID were
+ prevent this, <productname>PostgreSQL</> reserves a special XID,
+ <literal>FrozenTransactionId</>, which does not follow the normal XID
+ comparison rules and is always considered older
+ than every normal XID.
+ Frozen row versions are treated as if the inserting XID were
<literal>FrozenTransactionId</>, so that they will appear to be
<quote>in the past</> to all normal transactions regardless of wraparound
issues, and so such row versions will be valid until deleted, no matter
how long that is.
</para>
+ <note>
+ <para>
+ In <productname>PostgreSQL</> versions before 9.4, freezing was
+ implemented by actually replacing a row's insertion XID
+ with <literal>FrozenTransactionId</>, which was visible in the
+ row's <structname>xmin</> system column. Newer versions just set a flag
+ bit, preserving the row's original <structname>xmin</> for possible
+ forensic use. However, rows with <structname>xmin</> equal
+ to <literal>FrozenTransactionId</> (2) may still be found
+ in databases <application>pg_upgrade</>'d from pre-9.4 versions.
+ </para>
+ <para>
+ Also, system catalogs may contain rows with <structname>xmin</> equal
+ to <literal>BootstrapTransactionId</> (1), indicating that they were
+ inserted during the first phase of <application>initdb</>.
+ Like <literal>FrozenTransactionId</>, this special XID is treated as
+ older than every normal XID.
+ </para>
+ </note>
+
<para>
<xref linkend="guc-vacuum-freeze-min-age">
- controls how old an XID value has to be before its row version will be
+ controls how old an XID value has to be before rows bearing that XID will be
frozen. Increasing this setting may avoid unnecessary work if the
rows that would otherwise be frozen will soon be modified again,
but decreasing this setting increases