aims to be a simple backup and restore system that can seamlessly scale up to the largest databases and workloads.
Primary features:
Local or remote backup
Multi-threaded backup/restore for performance
Checksums
Safe backups (checks that logs required for consistency are present before backup completes)
Full, differential, and incremental backups
Backup rotation (and minimum retention rules with optional separate retention for archive)
In-stream compression/decompression
Archiving and retrieval of logs for replicas/restores built in
Async archiving for very busy systems (including space limits)
Backup directories are consistent Postgres clusters (when hardlinks are on and compression is off)
Tablespace support
Restore delta option
Restore using timestamp/size or checksum
Restore remapping base/tablespaces
Instead of relying on traditional backup tools like tar and rsync, implements all backup features internally and uses a custom protocol for communicating with remote systems. Removing reliance on tar and rsync allows for better solutions to database-specific backup issues. The custom remote protocol limits the types of connections that are required to perform a backup which increases security.
uses the gitflow model of development. This means that the master branch contains only the release history, i.e. each commit represents a single release and release tags are always from the master branch. The dev branch contains a single commit for each feature or fix and more accurately depicts the development history. Actual development is done on feature (dev_*) branches and squashed into dev after regression tests have passed. In this model dev is considered stable and can be released at any time. As such, the dev branch does not have any special version modifiers. is written entirely in Perl and uses some non-standard modules that must be installed from CPAN.* Starting from a clean install, update the OS:
apt-get update
apt-get upgrade (reboot if required)
* Install ssh, git and cpanminus:
apt-get install ssh
apt-get install git
apt-get install cpanminus
* Install Postgres (instructions from http://www.postgresql.org/download/linux/ubuntu/)
Create the file /etc/apt/sources.list.d/pgdg.list, and add a line for the repository:
deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main
* Then run the following:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
apt-get install postgresql-9.3
* Install required Perl modules:
cpanm Net::OpenSSH
cpanm IPC::System::Simple
cpanm threads (update this package when thread-max > 1)
cpanm Thread::Queue (update this package when thread-max > 1)
* Install PgBackRest
can be installed by downloading the most recent release:
https://github.com/pgmasters/backrest/releases
can be installed anywhere but it's best (though not required) to install it in the same location on all systems.
* Install development libraries and additional Perl modules for regression tests:
apt-get install postgresql-server-dev-9.4
cpanm DBI
cpanm DBD:Pg
These options are either global or used by all commands.Perform a database backup. does not have a built-in scheduler so it's best to run it from cron or some other scheduling mechanism.
/path/to/pg_backrest.pl --stanza=db --type=full backup
Run a full backup on the db stanza. --type can also be set to incr or diff for incremental or differential backups. However, if no full backup exists then a full backup will be forced even if incr or diff is requested.Archive a WAL segment to the repository.
/path/to/pg_backrest.pl --stanza=db archive-push %p
Accepts a WAL segment from and archives it in the repository. %p is how specifies the location of the WAL segment to be archived.Get a WAL segment from the repository.
/path/to/pg_backrest.pl --stanza=db archive-get %f %p
Retrieves a WAL segment from the repository. This command is used in restore.conf to restore a backup, perform PITR, or as an alternative to streaming for keeping a replica up to date. %f is how specifies the WAL segment it needs and %p is the location where it should be copied. does backup rotation, but is not concerned with when the backups were created. So if two full backups are configured for rentention, will keep two full backups no matter whether they occur, two hours apart or two weeks apart.
/path/to/pg_backrest.pl --stanza=db expire
Expire (rotate) any backups that exceed the defined retention. Expiration is run automatically after every successful backup, so there is no need to run this command separately unless you have reduced rentention, usually to free up some space.Perform a database restore. This command is generall run manually, but there are instances where it might be automated.
/path/to/pg_backrest.pl --stanza=db --type=name --target=release restore
Restores the latest database backup and then recovers to the release restore point. can be used entirely with command-line parameters but a configuration file is more practical for installations that are complex or set a lot of options. The default location for the configuration file is /etc/pg_backrest.conf.Modify the following settings in postgresql.conf:
wal_level = archive
archive_mode = on
archive_command = '/path/to/backrest/bin/pg_backrest.pl --stanza=db archive-push %p'
Replace the path with the actual location where was installed. The stanza parameter should be changed to the actual stanza name for your database.
The absolute minimum required to run (if all defaults are accepted) is the database path.
/etc/pg_backrest.conf:
[main]
db-path=/data/db
The db-path option could also be provided on the command line, but it's best to use a configuration file as options tend to pile up quickly.This configuration is appropriate for a small installation where backups are being made locally or to a remote file system that is mounted locally. A number of additional options are set:
cmd-psql - Custom location and parameters for psql.
cmd-psql-option - Options for psql can be set per stanza.
compress - Disable compression (handy if the file system is already compressed).
repo-path - Path to the repository where backups and WAL archive are stored.
log-level-file - Set the file log level to debug (Lots of extra info if something is not working as expected).
hardlink - Create hardlinks between backups (but never between full backups).
thread-max - Use 2 threads for backup/restore operations.
/etc/pg_backrest.conf:
[global:command]
cmd-psql=/usr/local/bin/psql -X %option%
[global:general]
compress=n
repo-path=/Users/dsteele/Documents/Code/backrest/test/test/backrest
[global:log]
log-level-file=debug
[global:backup]
hardlink=y
thread-max=2
[main]
db-path=/data/db
[main:command]
cmd-psql-option=--port=5433
This configuration is appropriate for a small installation where backups are being made remotely. Make sure that postgres@db-host has trusted ssh to backrest@backup-host and vice versa. This configuration assumes that you have pg_backrest_remote.pl and pg_backrest.pl in the same path on both servers.
/etc/pg_backrest.conf on the db host:
[global:general]
repo-path=/path/to/db/repo
repo-remote-path=/path/to/backup/repo
[global:backup]
backup-host=backup.mydomain.com
backup-user=backrest
[global:archive]
archive-async=y
[main]
db-path=/data/db
/etc/pg_backrest.conf on the backup host:
[global:general]
repo-path=/path/to/backup/repo
[main]
db-host=db.mydomain.com
db-path=/data/db
db-user=postgres
The command section defines the location of external commands that are used by .Defines the full path to psql. psql is used to call pg_start_backup() and pg_stop_backup().
If addtional per stanza parameters need to be passed to psql (such as --port or --cluster) then add %option% to the command line and use command-option::psql to set options./usr/bin/psql -X %option%Allows per stanza command line parameters to be passed to psql.--port=5433Defines the location of pg_backrest_remote.pl.
Required only if the path to pg_backrest_remote.pl is different on the local and remote systems. If not defined, the remote path will be assumed to be the same as the local path.same as local/usr/lib/backrest/bin/pg_backrest_remote.plThe log section defines logging-related settings. The following log levels are supported:
Sets file log level.debugSets console log level.errorThe general section defines settings that are shared between multiple operations.Set the buffer size used for copy, compress, and uncompress functions. A maximum of 3 buffers will be in use at a time per thread. An additional maximum of 256K per thread may be used for zlib buffers.16384 - 838860832768Enable gzip compression. Backup files are compatible with command-line gzip tools.nSets the zlib level to be used for file compression when compress=y.0-99Sets the zlib level to be used for protocol compression when compress=n and the database is not on the same host as the backup. Protocol compression is used to reduce network traffic but can be disabled by setting compress-level-network=0. When compress=y the compress-level-network setting is ignored and compress-level is used instead so that the file is only compressed once. SSH compression is always disabled.0-91Path to the backrest repository where WAL segments, backups, logs, etc are stored./data/db/backrestPath to the remote backrest repository where WAL segments, backups, logs, etc are stored./backup/backrestThe backup section defines settings related to backup.Sets the backup host when backup up remotely via SSH. Make sure that trusted SSH authentication is configured between the db host and the backup host.
When backing up to a locally mounted network filesystem this setting is not required.backup.domain.comSets user account on the backup host.backrestForces a checkpoint (by passing true to the fast parameter of pg_start_backup()) so the backup begins immediately.yEnable hard-linking of files in differential and incremental backups to their full backups. This gives the appearance that each backup is a full backup. Be careful, though, because modifying files that are hard-linked can affect all the backups in the set.yDefines how often the manifest will be saved during a backup (in bytes). Saving the manifest is important because it stores the checksums and allows the resume function to work efficiently. The actual threshold used is 1% of the backup size or manifest-save-threshold, whichever is greater.5368709120Defines whether the resume feature is enabled. Resume can greatly reduce the amount of time required to run a backup after a previous backup of the same type has failed. It adds complexity, however, so it may be desirable to disable in environments that do not require the feature.falseDefines the number of threads to use for backup or restore. Each thread will perform compression and transfer to make the backup run faster, but don't set thread-max so high that it impacts database performance during backup.4Maximum amount of time (in seconds) that a backup thread should run. This limits the amount of time that a thread might be stuck due to unforeseen issues during the backup. Has no affect when thread-max=1.3600Checks that all WAL segments required to make the backup consistent are present in the WAL archive. It's a good idea to leave this as the default unless you are using another method for archiving.nStore WAL segments required to make the backup consistent in the backup's pg_xlog path. This slightly paranoid option protects against corruption or premature expiration in the WAL segment archive. PITR won't be possible without the WAL segment archive and this option also consumes more space.
Even though WAL segments will be restored with the backup, will ignore them if a recovery.conf file exists and instead use archive_command to fetch WAL segments. Specifying type=none when restoring will not create recovery.conf and force to use the WAL segments in pg_xlog. This will get the database to a consistent state.yThe archive section defines parameters when doing async archiving. This means that the archive files will be stored locally, then a background process will pick them and move them to the backup.Archive WAL segments asynchronously. WAL segments will be copied to the local repo, then a process will be forked to compress the segment and transfer it to the remote repo if configured. Control will be returned to as soon as the WAL segment is copied locally.yLimits the amount of archive log that will be written locally when archive-async=y. After the limit is reached, the following will happen:
PgBackRest will notify Postgres that the archive was succesfully backed up, then DROP IT.
An error will be logged to the console and also to the Postgres log.
A stop file will be written in the lock directory and no more archive files will be backed up until it is removed.
If this occurs then the archive log stream will be interrupted and PITR will not be possible past that point. A new backup will be required to regain full restore capability.
The purpose of this feature is to prevent the log volume from filling up at which point Postgres will stop completely. Better to lose the backup than have the database go down.
To start normal archiving again you'll need to remove the stop file which will be located at ${repo-path}/lock/${stanza}-archive.stop where ${repo-path} is the path set in the general section, and ${stanza} is the backup stanza.1024The restore section defines settings used for restoring backups.Defines whether tablespaces will be be restored into their original (or remapped) locations or stored directly under the pg_tblspc path. Disabling this setting produces compact restores that are convenient for development, staging, etc. Currently these restores cannot be backed up as expects only links in the pg_tblspc path. If no tablespaces are present this this setting has no effect.nThe expire section defines how long backups will be retained. Expiration only occurs when the number of complete backups exceeds the allowed retention. In other words, if full-retention is set to 2, then there must be 3 complete backups before the oldest will be expired. Make sure you always have enough space for rentention + 1 backups.Number of full backups to keep. When a full backup expires, all differential and incremental backups associated with the full backup will also expire. When not defined then all full backups will be kept.2Number of differential backups to keep. When a differential backup expires, all incremental backups associated with the differential backup will also expire. When not defined all differential backups will be kept.3Type of backup to use for archive retention (full or differential). If set to full, then PgBackRest will keep archive logs for the number of full backups defined by retention-archive. If set to differential, then PgBackRest will keep archive logs for the number of differential backups defined by retention-archive.
If not defined then archive logs will be kept indefinitely. In general it is not useful to keep archive logs that are older than the oldest backup, but there may be reasons for doing so.diffNumber of backups worth of archive log to keep.2A stanza defines a backup for a specific database. The stanza section must define the base database path and host/user if the database is remote. Also, any global configuration sections can be overridden to define stanza-specific settings.Define the database host. Used for backups where the database host is different from the backup host.db.domain.comDefines user account on the db host when db-host is defined.postgresPath to the db data directory (data_directory setting in postgresql.conf)./data/dbFixed an issue where archive-copy would fail on an incr/diff backup when hardlink=n. In this case the pg_xlog path does not already exist and must be created. Reported by Michael RennerAllow duplicate WAL segments to be archived when the checksum matches. This is necessary for some recovery scenarios.Allow comments/disabling in pg_backrest.conf using #. Suggested by Michael Renner.Better logging before pg_start_backup() to make it clear when the backup is waiting on a checkpoint. Suggested by Michael Renner.Various command behavior, help and logging fixes. Reported by Michael Renner.Fixed an issue in async archiving where archive-push was not properly returning 0 when archive-max-mb was reached and moved the async check after transfer to avoid having to remove the stop file twice. Also added unit tests for this case and improved error messages to make it clearer to the user what went wrong. Reported by Michael Renner.Replaced JSON module with JSON::PP which ships with core Perl.Better resume support. Resumed files are checked to be sure they have not been modified and the manifest is saved more often to preserve checksums as the backup progresses. More unit tests to verify each resume case.Resume is now optional. Use the resume setting or --no-resume from the command line to disable.More info messages during restore. Previously, most of the restore messages were debug level so not a lot was output in the log.Fixed an issue where an absolute path was not written into recovery.conf when the restore was run with a relative path.Added tablespace setting to allow tablespaces to be restored into the pg_tblspc path. This produces compact restores that are convenient for development, staging, etc. Currently these restores cannot be backed up as expects only links in the pg_tblspc path.Fixed a buffering error that could occur on large, highly-compressible files when copying to an uncompressed remote destination. The error was detected in the decompression code and resulted in a failed backup rather than corruption so it should not affect successful backups made with previous versions.Pushing duplicate WAL now generates an error. This worked before only if checksums were disabled.Database System IDs are used to make sure that all WAL in an archive matches up. This should help prevent misconfigurations that send WAL from multiple clusters to the same archive.Regression tests working back to 8.3.Improved threading model by starting threads early and terminating them late.Added restore functionality.All options can now be set on the command-line making pg_backrest.conf optional.De/compression is now performed without threads and checksum/size is calculated in stream. That means file checksums are no longer optional.Added option --no-start-stop to allow backups when Postgres is shut down. If postmaster.pid is present then --force is required to make the backup run (though if Postgres is running an inconsistent backup will likely be created). This option was added primarily for the purpose of unit testing, but there may be applications in the real world as well.Fixed broken checksums and now they work with normal and resumed backups. Finally realized that checksums and checksum deltas should be functionally separated and this simplied a number of things. Issue #28 has been created for checksum deltas.Fixed an issue where a backup could be resumed from an aborted backup that didn't have the same type and prior backup.Removed dependency on Moose. It wasn't being used extensively and makes for longer startup times.Checksum for backup.manifest to detect corrupted/modified manifest.Link latest always points to the last backup. This has been added for convenience and to make restores simpler.More comprehensive unit tests in all areas.Complete rewrite of BackRest::File module to use a custom protocol for remote operations and Perl native GZIP and SHA operations. Compression is performed in threads rather than forked processes.Fairly comprehensive unit tests for all the basic operations. More work to be done here for sure, but then there is always more work to be done on unit tests.Removed dependency on Storable and replaced with a custom ini file implementation.Added much needed documentationNumerous other changes that can only be identified with a diff.Working on improving error handling in the file object. This is not complete, but works well enough to find a few errors that have been causing us problems (notably, find is occasionally failing building the archive async manifest when system is under load).Found and squashed a nasty bug where file_copy() was defaulted to ignore errors. There was also an issue in file_exists that was causing the test to fail when the file actually did exist. Together they could have resulted in a corrupt backup with no errors, though it is very unlikely.The archive-get operation returns a 1 when the archive file is missing to differentiate from hard errors (ssh connection failure, file copy error, etc.) This lets Postgres know that that the archive stream has terminated normally. However, this does not take into account possible holes in the archive stream.If an archive directory which should be empty could not be deleted backrest was throwing an error. There's a good fix for that coming, but for the time being it has been changed to a warning so processing can continue. This was impacting backups as sometimes the final archive file would not get pushed if the first archive file had been in a different directory (plus some bad luck).Added RequestTTY=yes to ssh sesssions. Hoping this will prevent random lockups.Added archive-get functionality to aid in restores.Added option to force a checkpoint when starting the backup start-fast=y.Removed master_stderr_discard option on database SSH connections. There have been occasional lockups and they could be related to issues originally seen in the file code.Changed lock file conflicts on backup and expire commands to ERROR. They were set to DEBUG due to a copy-and-paste from the archive locks.No restore functionality, but the backup directories are consistent Postgres data directories. You'll need to either uncompress the files or turn off compression in the backup. Uncompressed backups on a ZFS (or similar) filesystem are a good option because backups can be restored locally via a snapshot to create logical backups or do spot data recovery.Archiving is single-threaded. This has not posed an issue on our multi-terabyte databases with heavy write volume. Recommend a large WAL volume or to use the async option with a large volume nearby.Backups are multi-threaded, but the Net::OpenSSH library does not appear to be 100% threadsafe so it will very occasionally lock up on a thread. There is an overall process timeout that resolves this issue by killing the process. Yes, very ugly.Checksums are lost on any resumed backup. Only the final backup will record checksum on multiple resumes. Checksums from previous backups are correctly recorded and a full backup will reset everything.The backup.manifest is being written as Storable because Config::IniFile does not seem to handle large files well. Would definitely like to save these as human-readable text.Absolutely no documentation (outside the code). Well, excepting these release notes.Primary recognition goes to Stephen Frost for all his valuable advice and criticism during the development of .
Resonate (http://www.resonate.com/) also contributed to the development of PgBackRest and allowed me to install early (but well tested) versions as their primary Postgres backup solution.