pgsql: Add --copy-file-range option to pg_upgrade.

Поиск
Список
Период
Сортировка
От Thomas Munro
Тема pgsql: Add --copy-file-range option to pg_upgrade.
Дата
Msg-id E1rhdpJ-002HuY-7A@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add --copy-file-range option to pg_upgrade.

The copy_file_range() system call is available on at least Linux and
FreeBSD, and asks the kernel to use efficient ways to copy ranges of a
file.  Options available to the kernel include sharing block ranges
(similar to --clone mode), and pushing down block copies to the storage
layer.

For automated testing, see PG_TEST_PG_UPGRADE_MODE.  (Perhaps in a later
commit we could consider setting this mode for one of the CI targets.)

Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://postgr.es/m/CA%2BhUKGKe7Hb0-UNih8VD5UNZy5-ojxFb3Pr3xSBBL8qj2M2%3DdQ%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d93627bcbe5001750e7611f0e637200e2d81dcff

Modified Files
--------------
configure                          |  2 +-
configure.ac                       |  1 +
doc/src/sgml/ref/pgupgrade.sgml    | 13 +++++++
meson.build                        |  1 +
src/bin/pg_upgrade/TESTING         |  4 +-
src/bin/pg_upgrade/check.c         |  3 ++
src/bin/pg_upgrade/file.c          | 78 ++++++++++++++++++++++++++++++++++++++
src/bin/pg_upgrade/option.c        |  7 +++-
src/bin/pg_upgrade/pg_upgrade.h    |  4 ++
src/bin/pg_upgrade/relfilenumber.c |  8 ++++
src/include/pg_config.h.in         |  3 ++
11 files changed, 120 insertions(+), 4 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Remove surplus trailing semicolon
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Add recovery TAP test for race condition with slot invalidations