Skip to content

Commit eb9436b

Browse files
committed
[Issue #79]: remove partial validate from documentation
1 parent d8b8b08 commit eb9436b

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

Documentation.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Current version - 2.1.5
2929
* [External directories](#external-directories)
3030
* [Verifying a Cluster](#verifying-a-cluster)
3131
* [Validating a Backup](#validating-a-backup)
32-
* [Partial Validation](#partial-validation)
3332
* [Restoring a Cluster](#restoring-a-cluster)
3433
* [Partial Restore](#partial-restore)
3534
* [Performing Point-in-Time (PITR) Recovery](#performing-point-in-time-pitr-recovery)
@@ -522,26 +521,6 @@ If *backup_id* belong to incremental backup, then all its parents starting from
522521

523522
If you omit all the parameters, all backups are validated.
524523

525-
#### Partial Validation
526-
527-
If you have enabled [partial restore](#setting-up-partial-restore) before taking backups, you can validate or exclude from validation the arbitraty number of specific databases using [partial restore options](#partial-restore-options) with the [validate](#validate) command.
528-
529-
To validate only one or more databases, run the `validate` command with the following options:
530-
531-
pg_probackup validate -B backup_dir --instance instance_name -i backup_id --db-include=database_name
532-
533-
The option `--db-include` can be specified multiple times. For example, to validate only databases "db1" and "db2", run the following command:
534-
535-
pg_probackup validate -B backup_dir --instance instance_name -i backup_id --db-include=db1 --db-include=db2
536-
537-
To exclude one or more specific databases from validation, run the following options:
538-
539-
pg_probackup validate -B backup_dir --instance instance_name -i backup_id --db-exclude=database_name
540-
541-
The option `--db-exclude` can be specified multiple times. For example, to exclude the databases "db1" and "db2" from validation, run the following command:
542-
543-
pg_probackup validate -B backup_dir --instance instance_name -i backup_id --db-exclude=db1 --db-exclude=db2
544-
545524
### Restoring a Cluster
546525

547526
To restore the database cluster from a backup, run the restore command with at least the following options:
@@ -1115,12 +1094,9 @@ For details on usage, see the section [Verifying a Cluster](#verifying-a-cluster
11151094
[-j num_threads] [--progress]
11161095
[--skip-block-validation]
11171096
[recovery_target_options] [logging_options]
1118-
[partial_restore_options]
11191097

11201098
Verifies that all the files required to restore the cluster are present and not corrupted. If *instance_name* is not specified, pg_probackup validates all backups available in the backup catalog. If you specify the *instance_name* without any additional options, pg_probackup validates all the backups available for this backup instance. If you specify the *instance_name* with a [recovery target options](#recovery-target-options) and/or a *backup_id*, pg_probackup checks whether it is possible to restore the cluster using these options.
11211099

1122-
If you specify the [partial restore options](#partial-restore-options) and a *backup_id*, pg_probackup checks whether it is possible to restore the cluster using these options.
1123-
11241100
For details, see the section [Validating a Backup](#validating-a-backup).
11251101

11261102
#### merge
@@ -1408,7 +1384,7 @@ Specifies a string of SSH command-line options. For example, the following optio
14081384

14091385
#### Partial Restore Options
14101386

1411-
This section describes the options related to partial restore of cluster from backup. These options can be used with [restore](#restore) and [validate](#validate) commands.
1387+
This section describes the options related to partial restore of cluster from backup. These options can be used with [restore](#restore) command.
14121388

14131389
--db-exclude=dbname
14141390
Specifies database name to exclude from restore. All other databases in the cluster will be restored as usual, including `template0` and `template1`. This option can be specified multiple times for multiple databases.

0 commit comments

Comments
 (0)