RESUME JOB

On this page Carat arrow pointing down
Warning:
CockroachDB v2.1 is no longer supported as of April 30, 2020. For more details, refer to the Release Support Policy.

The RESUME JOB statement lets you resume paused IMPORT jobs, enterprise BACKUP and RESTORE jobs, and, as of v2.1, changefeeds.

Note:
You cannot pause schema changes.

Required privileges

By default, only the root user can control a job.

Synopsis

RESUME JOB job_id JOBS select_stmt

Parameters

Parameter Description
job_id The ID of the job you want to resume, which can be found with SHOW JOBS.
select_stmt A selection query that returns job_id(s) to resume.

Examples

Pause a job

icon/buttons/copy
SHOW JOBS;
+----------------+---------+-------------------------------------------+...
|       id       |  type   |               description                 |...
+----------------+---------+-------------------------------------------+...
| 27536791415282 | RESTORE | RESTORE db.* FROM 'azure://backup/db/tbl' |...
+----------------+---------+-------------------------------------------+...
icon/buttons/copy
PAUSE JOB 27536791415282;

Resume a single job

icon/buttons/copy
RESUME JOB 27536791415282;

Resume multiple jobs

New in v2.1: To resume multiple jobs, nest a SELECT clause that retrieves job_id(s) inside the RESUME JOBS statement:

icon/buttons/copy
RESUME JOBS (SELECT job_id FROM [SHOW JOBS]
      WHERE user_name = 'maxroach');

All jobs created by maxroach will be resumed.

See also


Yes No
On this page

Yes No