Re: Transaction Id Space, Freezing and Wraparound - Mailing list pgsql-general

From Tom Lane
Subject Re: Transaction Id Space, Freezing and Wraparound
Date
Msg-id 31771.1542747617@sss.pgh.pa.us
Whole thread Raw
In response to Transaction Id Space, Freezing and Wraparound  (Martín Fernández <fmartin91@gmail.com>)
Responses Re: Transaction Id Space, Freezing and Wraparound
Re: Transaction Id Space, Freezing and Wraparound
List pgsql-general
=?UTF-8?q?Mart=C3=ADn_Fern=C3=A1ndez?= <fmartin91@gmail.com> writes:
> First thing that generated a lot of noise in my head was the following, if pg assigns contiguous numeric values for
thetxid, how does pg deal with fragmentation issues ? Then I later found that the txid space is actually circular and
notlinearly as I originally thought it was. This exposed me to the fact that the txid is actually exported as a 64bit
valuewhere the last 32bits are an epoch. My understanding is that the epoch is the component that allows the
circularityof the data structure. I then started analyzing how pg decides if a given tuple is eligible for freezing.  I
foundout that pg will compare a cutoff_tx (I assume this is the last committed tx) with the xmin value of the given
tuple,if xmin precedes the cutoff_tx the tuple is eligible (I’m ignoring HEAP_XMAX_IS_MULTI and HEAP_MOVED cases). Now,
thexmin of a tuple is an 32 bit integer, so, how is the epoch part of an exported txid considered here ? What if we had
adatabase really old where a txid with integer value 10 is greater than a txid of value 1000 ?  

Actually, XID epoch is an artifact that's bolted on for possible use by
replication or what have you.  So far as the core database is concerned,
XIDs are 32 bits in a circular space, and the way that we deal with your
question is we don't let the case arise.  Every old tuple must be marked
"frozen" before its XID gets to be 2 billion XIDs old; after that, we
don't particularly care just how old it is.  The whole "wraparound"
business just exists to make sure that happens in time.

If the stored XIDs were 64 bits wide, we'd not have to bother with all
of this mess ... but adding another 64 bits to tuple headers would be
a painful space cost, not to mention the storage compatibility issues.

            regards, tom lane


pgsql-general by date:

Previous
From: Martín Fernández
Date:
Subject: Transaction Id Space, Freezing and Wraparound
Next
From: Martín Fernández
Date:
Subject: Re: Transaction Id Space, Freezing and Wraparound