1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-11 11:41:33 +02:00

update Readme about remote mode via ssh

This commit is contained in:
Grigory Smolkin 2019-04-19 19:24:25 +03:00
parent 9ef51ae27e
commit 9e26a6d6c9

View File

@ -17,6 +17,7 @@ As compared to other backup solutions, `pg_probackup` offers the following benef
* Extended logging settings
* Custom commands to simplify WAL log archiving
* External to PGDATA directories, such as directories with config files and scripts, can be included in backup
* Remote backup, restore, archive-push and archive-get operations via ssh (beta)
To manage backup data, `pg_probackup` creates a backup catalog. This directory stores all backup files with additional meta information, as well as WAL archives required for [point-in-time recovery](https://postgrespro.com/docs/postgresql/current/continuous-archiving.html). You can store backups for different instances in separate subdirectories of a single backup catalog.
@ -39,8 +40,8 @@ Regardless of the chosen backup type, all backups taken with `pg_probackup` supp
## Limitations
`pg_probackup` currently has the following limitations:
* Creating backups from a remote server is currently not supported.
* The server from which the backup was taken and the restored server must be compatible by the [block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#GUC-BLOCK-SIZE) and [wal_block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#GUC-WAL-BLOCK-SIZE) parameters and have the same major release number.
* Remote mode is in beta stage.
* Microsoft Windows operating system support is in beta stage.
## Installation and Setup