Purpose
This statement triggers the background task specified by the parameter.
This statement can be executed only in the sys tenant.
Syntax
alter_system_job_stmt:
ALTER SYSTEM RUN JOB job_name
[ZONE [=] 'zone' | SERVER [=] 'server'];
Parameters
Parameter |
Description |
|---|---|
| job_name | Specifies the task name. If the task name contains special characters, enclose it in single quotes. Otherwise, single quotes are optional. Supported tasks include:
|
| SERVER [=] 'server' | Specifies the server on which to execute the task. This parameter is supported only for the check_partition_table task. |
| ZONE [=] 'zone' | Specifies the zone on which to execute the task. This parameter is supported only for the check_partition_table task. |
Examples
Trigger the Root Service self-check task.
obclient> ALTER SYSTEM RUN JOB "root_inspection";
