mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Allow on-line enabling and disabling of data checksums
This makes it possible to turn checksums on in a live cluster, without the previous need for dump/reload or logical replication (and to turn it off). Enabling checkusm starts a background process in the form of a launcher/worker combination that goes through the entire database and recalculates checksums on each and every page. Only when all pages have been checksummed are they fully enabled in the cluster. Any failure of the process will revert to checksums off and the process has to be started. This adds a new WAL record that indicates the state of checksums, so the process works across replicated clusters. Authors: Magnus Hagander and Daniel Gustafsson Review: Tomas Vondra, Michael Banck, Heikki Linnakangas, Andrey Borodin
This commit is contained in:
@ -1383,7 +1383,7 @@ sendFile(const char *readfilename, const char *tarfilename, struct stat *statbuf
|
||||
|
||||
_tarWriteHeader(tarfilename, NULL, statbuf, false);
|
||||
|
||||
if (!noverify_checksums && DataChecksumsEnabled())
|
||||
if (!noverify_checksums && DataChecksumsNeedVerify())
|
||||
{
|
||||
char *filename;
|
||||
|
||||
|
@ -198,6 +198,7 @@ DecodeXLogOp(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
|
||||
case XLOG_FPW_CHANGE:
|
||||
case XLOG_FPI_FOR_HINT:
|
||||
case XLOG_FPI:
|
||||
case XLOG_CHECKSUMS:
|
||||
break;
|
||||
default:
|
||||
elog(ERROR, "unexpected RM_XLOG_ID record type: %u", info);
|
||||
|
Reference in New Issue
Block a user