Recommended Settings
Suggest editsThis section walks you through the recommended settings while using pgBackRest.
Encryption
Use the following settings to encrypt the files in the repository repo1
:
The cipher-pass
should be base64 encoded. For example, to generate a random passphrase use the following setting:
Maximum Number of Processes
Use the following setting to set the maximum number of processes for compression usage and file transfer:
Each process will perform compression and transfer to make the command run faster, but do not set process-max
so high that it impacts server load and performance.
Backup Fast Start
Use the start-fast=y
setting to force a checkpoint to start the backup quickly. This is achieved inside pgBackRest by passing true to the fast parameter of the pg_start_backup() database function. The backup will then begin immediately rather than waiting for the next regular checkpoint triggered by the database server itself.
Delta
Use the delta=y
setting to restore or backup using checksums.
During a restore, the data and tablespaces directories are expected to be present, but empty. This option performs a delta restore using checksums.
During a backup, this option will use checksums instead of timestamps to determine if files will be copied.
Log Levels
The output of each command will be printed in the console and a log file.
Use the following log-level-console
and log-level-file
settings to apply the log level:
- off;
- error;
- warn;
- info;
- detail;
- debug;
- trace.
CAUTION: Trace-level logging may expose secrets such as keys and passwords.
To add more output in the log file in case the executed command encounters an error and to avoid re-executing the command for more information, use the following settings:
EDB Postgres Advanced Server 15 compatibility
PostgreSQL forks may update the pg_control version or WAL headers without affecting the structures that pgBackRest depends on. The pg-version-force option has been added in v2.45 to force pgBackRest to treat a cluster as the specified version when it cannot be automatically identified.
When using EDB Postgres Advanced Server 15 or above, you might see this kind of error:
To solve this problem, add pg-version-force=15
into your configuration, in the stanza section (where 15
is the major release version used).
EDB Transparent Data Encryption support
Transparent data encryption (TDE) is an optional feature supported by EDB Postgres Advanced Server and EDB Postgres Extended Server.
To enable this feature in pgBackRest , add the following settings to the [global]
section:
The archive-header-check
option checks the WAL header against the database version and system identifier to ensure that the WAL is being copied to the correct stanza. This is an extra protection and disabling it is fairly safe in this case.
The page-header-check
option has been introduced in the 2.46 release. It helps reduce page checksum verification errors when the page is encrypted and the checksum is calculated on the encrypted page. Unfortunately, this isn't the case with EDB Transparent Data Encryption. So, the data page checksums validation (while backing up a cluster) has to be disabled using the checksum-page
option.
Glossary
pgBackRest
Could this page be better? Report a problem or suggest an addition!