Re: WAL Log numbering - Mailing list pgsql-bugs

From Tom Lane
Subject Re: WAL Log numbering
Date
Msg-id 22812.1000795259@sss.pgh.pa.us
Whole thread Raw
In response to WAL Log numbering  (Justin Clift <justin@postgresql.org>)
Responses Re: WAL Log numbering  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-bugs
Justin Clift <justin@postgresql.org> writes:
> I would have though that after 00000000000000FE would be
> 0000000000000100, not 0000000100000000.

This is the intended behavior, I believe.  The low-order half is a
32-bit byte offset DIV XLogSegSize --- we could compress out the zero
bits, but only at the cost of wiring an assumption about XLogSegSize
into the filename format.  The reason that 0/FF is missing from the
sequence is stated in xlog.h:

/*
 * We break each logical log file (xlogid value) into 16Mb segments.
 * One possible segment at the end of each log file is wasted, to ensure
 * that we don't have problems representing last-byte-position-plus-1.
 */
#define XLogSegSize    ((uint32) (16*1024*1024))
#define XLogSegsPerFile (((uint32) 0xffffffff) / XLogSegSize)
#define XLogFileSize    (XLogSegsPerFile * XLogSegSize)

> Just checked through the Interactive docs (not sure which version of 7.1
> they are) and says the numbers should be sequential.

This would seem to be an oversimplification in the docs.

            regards, tom lane

pgsql-bugs by date:

Previous
From: Justin Clift
Date:
Subject: WAL Log numbering
Next
From: John Summerfield
Date:
Subject: Website, mailing list