1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-12-17 23:37:37 +02:00

v1.24: New Backup Exclusions

Bug Fixes:

* Fixed an issue where warnings were being emitted in place of lower priority log messages during backup from standby initialization. (Reported by Uspen.)
* Fixed an issue where some db-* options (e.g. db-port) were not being passed to remotes. (Reported by Uspen.)

Features:

* Exclude contents of pg_snapshots, pg_serial, pg_notify, and pg_dynshmem from backup since they are rebuilt on startup.
* Exclude pg_internal.init files from backup since they are rebuilt on startup.
This commit is contained in:
David Steele
2017-09-28 19:06:41 -04:00
parent 40a85e34f1
commit d0bf946857
5 changed files with 2025 additions and 786 deletions

View File

@@ -156,8 +156,8 @@ my $oConfigHelpData =
summary =>
"Backup from the standby cluster.",
description =>
"Enable backup from standby to reduce load on the master cluster. This option requires that both the master and " .
"standby hosts be configured."
"Enable backup from standby to reduce load on the primary cluster. This option requires that both the primary " .
"and standby hosts be configured."
},
# BACKUP-USER Option Help
@@ -574,7 +574,7 @@ my $oConfigHelpData =
summary =>
"Protocol timeout.",
description =>
"Sets the timeout, in seconds, that the master or remote process will wait for a new message to be received on " .
"Sets the timeout, in seconds, that the local or remote process will wait for a new message to be received on " .
"the protocol layer. This prevents processes from waiting indefinitely for a message. The protocol-timeout " .
"option must be greater than the db-timeout option."
},