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
node 10 P7XDHB 2018-04-29 05:27:15+03 FULL STREAM 1/0 11s 39MB 16MB 1.00 0/F000028 0/F000198 OK
718
719
```
719
720
720
721
For each backup, the following information is provided:
@@ -724,12 +725,14 @@ For each backup, the following information is provided:
724
725
- ID — the backup identifier.
725
726
- Recovery time — the earliest moment for which you can restore the state of the database cluster.
726
727
- Mode — the method used to take this backup. Possible values: FULL, PAGE, DELTA, PTRACK.
727
-
- WAL — the WAL delivery mode. Possible values: STREAM and ARCHIVE.
728
-
-Current/Parent TLI — timeline identifiers of current backup and its parent.
728
+
- WAL Mode — the WAL delivery mode. Possible values: STREAM and ARCHIVE.
729
+
- TLI — timeline identifiers of current backup and its parent.
729
730
- Time — the time it took to perform the backup.
730
-
- Data — the size of the data files in this backup. This value does not include the size of WAL files.
731
-
- Start LSN — WAL log sequence number corresponding to the start of the backup process.
732
-
- Stop LSN — WAL log sequence number corresponding to the end of the backup process.
731
+
- Data — the size of the data files in this backup. This value does not include the size of WAL files. In case of STREAM backup the total size of backup can be calculated as 'Data' + 'WAL'.
732
+
- WAL — the uncompressed size of WAL files required to apply by PostgreSQL recovery process to reach consistency.
733
+
- Zratio — compression ratio calculated as 'uncompressed-bytes' / 'data-bytes'.
734
+
- Start LSN — WAL log sequence number corresponding to the start of the backup process. REDO point for PostgreSQL recovery process to start from.
735
+
- Stop LSN — WAL log sequence number corresponding to the end of the backup process. Consistency point for PostgreSQL recovery process.
- compress-alg — compression algorithm used during backup. Possible values: 'zlib', 'pglz', 'none'.
789
+
- compress-level — compression level used during backup.
790
+
- from-replica — the fact that backup was taken from standby server. Possible values: '1', '0'.
791
+
- block-size — (block_size)[https://www.postgresql.org/docs/current/runtime-config-preset.html#GUC-BLOCK-SIZE] setting of PostgreSQL cluster at the moment of backup start.
792
+
- wal-block-size — (wal_block_size)[https://www.postgresql.org/docs/current/runtime-config-preset.html#GUC-WAL-BLOCK-SIZE] setting of PostgreSQL cluster at the moment of backup start.
793
+
- checksum-version — the fact that PostgreSQL cluster, from which backup is taken, has enabled [data block checksumms](https://www.postgresql.org/docs/current/runtime-config-preset.html#GUC-DATA-CHECKSUMS). Possible values: '1', '0'.
794
+
- program-version — full version of pg_probackup binary used to create backup.
795
+
- start-time — the backup starting time.
796
+
- end-time — the backup ending time.
797
+
- uncompressed-bytes — size of the data files before adding page headers and applying compression. You can evaluate the effectiveness of compression by comparing 'uncompressed-bytes' to 'data-bytes' if compression if used.
798
+
- pgdata-bytes — size of the PostgreSQL cluster data files at the time of backup. You can evaluate the effectiveness of incremental backup by comparing 'pgdata-bytes' to 'uncompressed-bytes'.
799
+
- recovery-xid — current transaction id at the moment of backup ending.
800
+
- parent-backup-id — backup ID of parent backup. Available only for incremental backups.
801
+
- primary_conninfo — libpq conninfo used for connection to PostgreSQL cluster during backup. The password is not included.
802
+
782
803
To get more detailed information about the backup in json format, run the show with the backup ID:
783
804
784
805
pg_probackup show -B backup_dir --instance instance_name --format=json -i backup_id
@@ -851,7 +872,7 @@ For each backup, the following information is provided:
851
872
- Max Segno — number of the last existing WAL segment belonging to the timeline.
852
873
- N segments — number of WAL segments belonging to the timeline.
853
874
- Size — the size files take on disk.
854
-
- Zratio - compression ratio calculated as "N segments" * wal_seg_size / "Size".
875
+
- Zratio — compression ratio calculated as 'N segments' * wal_seg_size / 'Size'.
855
876
- N backups — number of backups belonging to the timeline. To get the details about backups, use json format.
856
877
- Status — archive status for this exact timeline. Possible values:
857
878
- OK — all WAL segments between Min and Max are present.
0 commit comments