Re: Block-level CRC checks

From: pgsql(at)mohawksoft(dot)com
To: "Decibel!" <decibel(at)decibel(dot)org>
Cc: pgsql(at)mohawksoft(dot)com, "Alvaro Herrera" <alvherre(at)commandprompt(dot)com>, "Pg Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Block-level CRC checks
Date: 2008-09-30 21:13:25
Message-ID: 47015.71.232.149.185.1222809205.squirrel@mail.mohawksoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


>
> I believe the idea was to make this as non-invasive as possible. And
> it would be really nice if this could be enabled without a dump/
> reload (maybe the upgrade stuff would make this possible?)
> --

It's all about the probability of a duplicate check being generated. If
you use a 32 bit checksum, then you have a theoretical probability of 1 in
4 billion that a corrupt block will be missed (probably much lower
depending on your algorithm). If you use a short, then a 1 in 65 thousand
probability. If you use an 8 bit number, then 1 in 256.

Why am I going on? Well, if there are any spare bits in a block header,
they could be used for the check value.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Decibel! 2008-09-30 21:17:10 Re: Block-level CRC checks
Previous Message Joshua Drake 2008-09-30 21:11:36 Re: Block-level CRC checks