@@ -93,6 +93,7 @@ help_pg_probackup(void)
93
93
printf (_ (" [--log-rotation-age=log-rotation-age]\n" ));
94
94
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
95
95
printf (_ (" [--retention-window=retention-window]\n" ));
96
+ printf (_ (" [--wal-depth=wal-depth]\n" ));
96
97
printf (_ (" [--compress-algorithm=compress-algorithm]\n" ));
97
98
printf (_ (" [--compress-level=compress-level]\n" ));
98
99
printf (_ (" [--archive-timeout=timeout]\n" ));
@@ -128,6 +129,7 @@ help_pg_probackup(void)
128
129
printf (_ (" [--delete-expired] [--delete-wal] [--merge-expired]\n" ));
129
130
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
130
131
printf (_ (" [--retention-window=retention-window]\n" ));
132
+ printf (_ (" [--wal-depth=wal-depth]\n" ));
131
133
printf (_ (" [--compress]\n" ));
132
134
printf (_ (" [--compress-algorithm=compress-algorithm]\n" ));
133
135
printf (_ (" [--compress-level=compress-level]\n" ));
@@ -186,6 +188,7 @@ help_pg_probackup(void)
186
188
printf (_ (" [-j num-threads] [--progress]\n" ));
187
189
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
188
190
printf (_ (" [--retention-window=retention-window]\n" ));
191
+ printf (_ (" [--wal-depth=wal-depth]\n" ));
189
192
printf (_ (" [--delete-wal] [-i backup-id | --delete-expired | --merge-expired]\n" ));
190
193
printf (_ (" [--dry-run]\n" ));
191
194
printf (_ (" [--help]\n" ));
@@ -263,6 +266,7 @@ help_backup(void)
263
266
printf (_ (" [--delete-expired] [--delete-wal] [--merge-expired]\n" ));
264
267
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
265
268
printf (_ (" [--retention-window=retention-window]\n" ));
269
+ printf (_ (" [--wal-depth=wal-depth]\n" ));
266
270
printf (_ (" [--compress]\n" ));
267
271
printf (_ (" [--compress-algorithm=compress-algorithm]\n" ));
268
272
printf (_ (" [--compress-level=compress-level]\n" ));
@@ -322,6 +326,8 @@ help_backup(void)
322
326
printf (_ (" number of full backups to keep; 0 disables; (default: 0)\n" ));
323
327
printf (_ (" --retention-window=retention-window\n" ));
324
328
printf (_ (" number of days of recoverability; 0 disables; (default: 0)\n" ));
329
+ printf (_ (" --wal-depth=wal-depth number of latest valid backups per timeline that must\n" ));
330
+ printf (_ (" retain the ability to perform PITR; 0 disables; (default: 0)\n" ));
325
331
printf (_ (" --dry-run perform a trial run without any changes\n" ));
326
332
327
333
printf (_ ("\n Pinning options:\n" ));
@@ -591,7 +597,8 @@ help_delete(void)
591
597
printf (_ (" [-i backup-id | --delete-expired | --merge-expired] [--delete-wal]\n" ));
592
598
printf (_ (" [-j num-threads] [--progress]\n" ));
593
599
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
594
- printf (_ (" [--retention-window=retention-window]\n\n" ));
600
+ printf (_ (" [--retention-window=retention-window]\n" ));
601
+ printf (_ (" [--wal-depth=wal-depth]\n\n" ));
595
602
596
603
printf (_ (" -B, --backup-path=backup-path location of the backup storage area\n" ));
597
604
printf (_ (" --instance=instance_name name of the instance\n" ));
@@ -609,6 +616,8 @@ help_delete(void)
609
616
printf (_ (" number of full backups to keep; 0 disables; (default: 0)\n" ));
610
617
printf (_ (" --retention-window=retention-window\n" ));
611
618
printf (_ (" number of days of recoverability; 0 disables; (default: 0)\n" ));
619
+ printf (_ (" --wal-depth=wal-depth number of latest valid backups per timeline that must\n" ));
620
+ printf (_ (" retain the ability to perform PITR; 0 disables; (default: 0)\n" ));
612
621
printf (_ (" --dry-run perform a trial run without any changes\n" ));
613
622
614
623
printf (_ ("\n Logging options:\n" ));
@@ -704,6 +713,7 @@ help_set_config(void)
704
713
printf (_ (" [--log-rotation-age=log-rotation-age]\n" ));
705
714
printf (_ (" [--retention-redundancy=retention-redundancy]\n" ));
706
715
printf (_ (" [--retention-window=retention-window]\n" ));
716
+ printf (_ (" [--wal-depth=wal-depth]\n" ));
707
717
printf (_ (" [--compress-algorithm=compress-algorithm]\n" ));
708
718
printf (_ (" [--compress-level=compress-level]\n" ));
709
719
printf (_ (" [--archive-timeout=timeout]\n" ));
@@ -746,6 +756,8 @@ help_set_config(void)
746
756
printf (_ (" number of full backups to keep; 0 disables; (default: 0)\n" ));
747
757
printf (_ (" --retention-window=retention-window\n" ));
748
758
printf (_ (" number of days of recoverability; 0 disables; (default: 0)\n" ));
759
+ printf (_ (" --wal-depth=wal-depth number of latest valid backups with ability to perform\n" ));
760
+ printf (_ (" the point in time recovery; disables; (default: 0)\n" ));
749
761
750
762
printf (_ ("\n Compression options:\n" ));
751
763
printf (_ (" --compress alias for --compress-algorithm='zlib' and --compress-level=1\n" ));
0 commit comments