Re: Cost of XLogInsert CRC calculations - Mailing list pgsql-hackers

From Greg Stark
Subject Re: Cost of XLogInsert CRC calculations
Date
Msg-id 87ekblucrt.fsf@stark.xeocode.com
Whole thread Raw
In response to Cost of XLogInsert CRC calculations  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Cost of XLogInsert CRC calculations
List pgsql-hackers
It occurs to me that at least on some OSes the WAL logs are being synced with
O_SYNC or its ilk. In those cases the writes should be guaranteed to be
written out in the order postgres wrote them. So if the tail end of the WAL
entry is there (is there any sort of footer?) then the entire entry must be
there. In that case is there any need to calculate the CRC at all?

I suppose it's a bit of a problem in that the database doing the replay might
not know which sync method was used to write the entries. The format would
have to stay the same. Some magic value would have to be defined to always be
correct.

-- 
greg



pgsql-hackers by date:

Previous
From: "Marc G. Fournier"
Date:
Subject: Re: Google's Summer of Code ...
Next
From: Tom Lane
Date:
Subject: Re: Cost of XLogInsert CRC calculations