You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -524,7 +524,7 @@ Makes an STREAM backup that includes all the necessary WAL files by streaming th
524
524
Specifies the replication slot for WAL streaming. This option can only be used together with the`--stream` option.
525
525
526
526
--temp-slot
527
-
Creates a temporary physical replication slot for streaming WAL from the backed up PostgreSQL instance. It ensures that all the required WAL segments remain available if WAL is rotated while the backup is in progress. This option can only be used together with the`--stream` option. Default slot name is`pg_probackup_slot`, which can be changed via option`-S / --slot`.
527
+
Creates a temporary physical replication slot for streaming WAL from the backed up PostgreSQL instance. It ensures that all the required WAL segments remain available if WAL is rotated while the backup is in progress. This option can only be used together with the`--stream` option. Default slot name is`pg_probackup_slot`, which can be changed via option`--slot/-S`.
528
528
529
529
--backup-pg-log
530
530
Includes the log directory into the backup. This directory usually contains log messages. By default, log directory is excluded.
@@ -610,7 +610,7 @@ Specifies the timestamp up to which recovery will proceed.
610
610
Specifies the transaction ID up to which recovery will proceed.
611
611
612
612
--recovery-target-inclusive=boolean
613
-
Specifies whether to stop just after the specified recovery target (true), or just before the recovery target (false). This option can only be used together with`--recovery-target-name`,`--recovery-target-time`,`--recovery-target-lsn` or`--recovery-target-xid` options. The defaultvalue is taken from the[recovery_target_inclusive](https://www.postgresql.org/docs/current/recovery-target-settings.html#RECOVERY-TARGET-INCLUSIVE) parameter.
613
+
Specifies whether to stop just after the specified recovery target (true), or just before the recovery target (false). This option can only be used together with`--recovery-target-name`,`--recovery-target-time`,`--recovery-target-lsn` or`--recovery-target-xid` options. The defaultdepends on[recovery_target_inclusive](https://www.postgresql.org/docs/current/recovery-target-settings.html#RECOVERY-TARGET-INCLUSIVE) parameter.
614
614
615
615
--recovery-target-action=pause|promote|shutdown
616
616
Default: pause
@@ -721,17 +721,17 @@ You can use these options together with [backup](#backup) and [archive-push](#ar
721
721
--compress-algorithm=compression_algorithm
722
722
Default: none
723
723
Defines the algorithm to use for compressing data files. Possible values are`zlib`,`pglz`, and`none`. If set to zlib or pglz, this option enables compression. By default, compression is disabled.
724
-
For the`archive-push` command, the pglz compression algorithm is not supported.
724
+
For the[archive-push](#archive-push) command, the pglz compression algorithm is not supported.
725
725
726
726
--compress-level=compression_level
727
727
Default: 1
728
-
Defines compression level (0 through 9, 0 being no compression and 9 being best compression). This option can be used together with --compress-algorithm option.
728
+
Defines compression level (0 through 9, 0 being no compression and 9 being best compression). This option can be used together with`--compress-algorithm` option.
729
729
730
730
--compress
731
731
Alias for`--compress-algorithm=zlib` and`--compress-level=1`.
732
732
733
733
#####Archiving Options
734
-
These options can be used with[archive-push](#archive-push)and[archive-get](#archive-get) commandsin[archive_command](https://www.postgresql.org/docs/current/runtime-config-wal.html#GUC-ARCHIVE-COMMAND) and[restore_command](https://www.postgresql.org/docs/current/archive-recovery-settings.html#RESTORE-COMMAND)settings.
734
+
These options can be used with[archive-push](#archive-push)commandin[archive_command](https://www.postgresql.org/docs/current/runtime-config-wal.html#GUC-ARCHIVE-COMMAND)settingand[archive-get](#archive-get) command in[restore_command](https://www.postgresql.org/docs/current/archive-recovery-settings.html#RESTORE-COMMAND)setting.
735
735
736
736
--wal-file-path=wal_file_path %p
737
737
Provides the path to the WAL file in`archive_command` and`restore_command`. The %p variable is required for correct processing.