SHOW RESTORE
Descriptionβ
This statement is used to view RESTORE tasks
Syntaxβ
SHOW [BRIEF] RESTORE [FROM <db_name>]
Parametersβ
1.<db_name>
The name of the database to which the recovery task belongs.
Return Valueβ
- brief: only show key information of RESTORE tasks, columns RestoreObjs, Progress, TaskErrMsg will not show
Column | Description |
---|---|
JobId | Unique job id |
Label | The name of the backup to restore |
Timestamp | The time version of the backup to restore |
DbName | belongs to the database |
State | current stage:
|
AllowLoad | Whether to allow import when restoring (currently not supported) |
ReplicationNum | Specifies the number of replicas to restore |
ReserveReplica | Whether to keep a copy |
ReplicaAllocation | Whether to keep dynamic partitioning enabled |
RestoreJobs | Tables and partitions to restore |
CreateTime | task submission time |
MetaPreparedTime | Metadata preparation completion time |
SnapshotFinishedTime | Snapshot completion time |
DownloadFinishedTime | Snapshot download completion time |
FinishedTime | Job finish time |
UnfinishedTasks | Displays unfinished subtask ids during SNAPSHOTING, DOWNLOADING and COMMITING stages |
Progress | Task progress |
TaskErrMsg | Display task error messages |
Status | If the job fails, display the failure message |
Timeout | Job timeout, in seconds |
Exampleβ
- View the latest RESTORE task under example_db.
SHOW RESTORE FROM example_db;