git.postgresql.org Git - postgresql.git/commit

git projects / postgresql.git / commit
? search:
summary | shortlog | log | commit | commitdiff | tree
(parent: ce77abe) | patch
Generate backup manifests for base backups, and validate them.
Fri, 3 Apr 2020 18:59:47 +0000 (14:59 -0400)
Fri, 3 Apr 2020 19:05:59 +0000 (15:05 -0400)
commit 0d8c9c1210c44b36ec2efcb223a1dfbe897a3661
Generate backup manifests for base backups, and validate them.

A manifest is a JSON document which includes (1) the file name, size,
last modification time, and an optional checksum for each file backed
up, (2) timelines and LSNs for whatever WAL will need to be replayed
to make the backup consistent, and (3) a checksum for the manifest
itself. By default, we use CRC-32C when checksumming data files,
because we are trying to detect corruption and user error, not foil an
adversary. However, pg_basebackup and the server-side BASE_BACKUP
command now have options to select a different algorithm, so users
wanting a cryptographic hash function can select SHA-224, SHA-256,
SHA-384, or SHA-512. Users not wanting file checksums at all can
disable them, or disable generating of the backup manifest altogether.
Using a cryptographic hash function in place of CRC-32C consumes
significantly more CPU cycles, which may slow down backups in some
cases.

A new tool called pg_validatebackup can validate a backup against the
manifest. If no checksums are present, it can still check that the
right files exist and that they have the expected sizes. If checksums
are present, it can also verify that each file has the expected
checksum. Additionally, it calls pg_waldump to verify that the
expected WAL files are present and parseable. Only plain format
backups can be validated directly, but tar format backups can be
validated after extracting them.

Robert Haas, with help, ideas, review, and testing from David Steele,
Stephen Frost, Andrew Dunstan, Rushabh Lathia, Suraj Kharage, Tushar
Ahuja, Rajkumar Raghuwanshi, Mark Dilger, Davinder Singh, Jeevan
Chalke, Amit Kapila, Andres Freund, and Noah Misch.

Discussion: http://postgr.es/m/CA+TgmoZV8dw1H2bzZ9xkKwdrk8+XYa+DC9H=F7heO2zna5T6qg@mail.gmail.com
27 files changed:
doc/src/sgml/protocol.sgml diff | blob | blame | history
doc/src/sgml/ref/allfiles.sgml diff | blob | blame | history
doc/src/sgml/ref/pg_basebackup.sgml diff | blob | blame | history
doc/src/sgml/ref/pg_validatebackup.sgml [new file with mode: 0644] blob
doc/src/sgml/reference.sgml diff | blob | blame | history
src/backend/access/transam/xlog.c diff | blob | blame | history
src/backend/replication/basebackup.c diff | blob | blame | history
src/backend/replication/repl_gram.y diff | blob | blame | history
src/backend/replication/repl_scanner.l diff | blob | blame | history
src/backend/replication/walsender.c diff | blob | blame | history
src/bin/Makefile diff | blob | blame | history
src/bin/pg_basebackup/pg_basebackup.c diff | blob | blame | history
src/bin/pg_basebackup/t/010_pg_basebackup.pl diff | blob | blame | history
src/bin/pg_validatebackup/.gitignore [new file with mode: 0644] blob
src/bin/pg_validatebackup/Makefile [new file with mode: 0644] blob
src/bin/pg_validatebackup/parse_manifest.c [new file with mode: 0644] blob
src/bin/pg_validatebackup/parse_manifest.h [new file with mode: 0644] blob
src/bin/pg_validatebackup/pg_validatebackup.c [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/001_basic.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/002_algorithm.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/003_corruption.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/004_options.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/005_bad_manifest.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/006_encoding.pl [new file with mode: 0644] blob
src/bin/pg_validatebackup/t/007_wal.pl [new file with mode: 0644] blob
src/include/replication/basebackup.h diff | blob | blame | history
src/include/replication/walsender.h diff | blob | blame | history
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /