10 # Type of a background job.
12 # @commit: block commit job type, see "block-commit"
14 # @stream: block stream job type, see "block-stream"
16 # @mirror: drive mirror job type, see "drive-mirror"
18 # @backup: drive backup job type, see "drive-backup"
20 # @create: image creation job type, see "blockdev-create" (since 3.0)
22 # @amend: image options amend job type, see "x-blockdev-amend" (since 5.1)
27 'data': ['commit', 'stream', 'mirror', 'backup', 'create', 'amend'] }
32 # Indicates the present state of a given job in its lifetime.
34 # @undefined: Erroneous, default state. Should not ever be visible.
36 # @created: The job has been created, but not yet started.
38 # @running: The job is currently running.
40 # @paused: The job is running, but paused. The pause may be requested by
41 # either the QMP user or by internal processes.
43 # @ready: The job is running, but is ready for the user to signal completion.
44 # This is used for long-running jobs like mirror that are designed to
47 # @standby: The job is ready, but paused. This is nearly identical to @paused.
48 # The job may return to @ready or otherwise be canceled.
50 # @waiting: The job is waiting for other jobs in the transaction to converge
51 # to the waiting state. This status will likely not be visible for
52 # the last job in a transaction.
54 # @pending: The job has finished its work, but has finalization steps that it
55 # needs to make prior to completing. These changes will require
56 # manual intervention via @job-finalize if auto-finalize was set to
57 # false. These pending changes may still fail.
59 # @aborting: The job is in the process of being aborted, and will finish with
60 # an error. The job will afterwards report that it is @concluded.
61 # This status may not be visible to the management process.
63 # @concluded: The job has finished all work. If auto-dismiss was set to false,
64 # the job will remain in the query list until it is dismissed via
67 # @null: The job is in the process of being dismantled. This state should not
68 # ever be visible externally.
72 { 'enum': 'JobStatus',
73 'data': ['undefined', 'created', 'running', 'paused', 'ready', 'standby',
74 'waiting', 'pending', 'aborting', 'concluded', 'null' ] }
79 # Represents command verbs that can be applied to a job.
81 # @cancel: see @job-cancel
83 # @pause: see @job-pause
85 # @resume: see @job-resume
87 # @set-speed: see @block-job-set-speed
89 # @complete: see @job-complete
91 # @dismiss: see @job-dismiss
93 # @finalize: see @job-finalize
98 'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
102 # @JOB_STATUS_CHANGE:
104 # Emitted when a job transitions to a different status.
106 # @id: The job identifier
107 # @status: The new job status
111 { 'event': 'JOB_STATUS_CHANGE',
112 'data': { 'id': 'str',
113 'status': 'JobStatus' } }
118 # Pause an active job.
120 # This command returns immediately after marking the active job for pausing.
121 # Pausing an already paused job is an error.
123 # The job will pause as soon as possible, which means transitioning into the
124 # PAUSED state if it was RUNNING, or into STANDBY if it was READY. The
125 # corresponding JOB_STATUS_CHANGE event will be emitted.
127 # Cancelling a paused job automatically resumes it.
129 # @id: The job identifier.
133 { 'command': 'job-pause', 'data': { 'id': 'str' } }
138 # Resume a paused job.
140 # This command returns immediately after resuming a paused job. Resuming an
141 # already running job is an error.
143 # @id : The job identifier.
147 { 'command': 'job-resume', 'data': { 'id': 'str' } }
152 # Instruct an active background job to cancel at the next opportunity.
153 # This command returns immediately after marking the active job for
156 # The job will cancel as soon as possible and then emit a JOB_STATUS_CHANGE
157 # event. Usually, the status will change to ABORTING, but it is possible that
158 # a job successfully completes (e.g. because it was almost done and there was
159 # no opportunity to cancel earlier than completing the job) and transitions to
162 # @id: The job identifier.
166 { 'command': 'job-cancel', 'data': { 'id': 'str' } }
172 # Manually trigger completion of an active job in the READY state.
174 # @id: The job identifier.
178 { 'command': 'job-complete', 'data': { 'id': 'str' } }
183 # Deletes a job that is in the CONCLUDED state. This command only needs to be
184 # run explicitly for jobs that don't have automatic dismiss enabled.
186 # This command will refuse to operate on any job that has not yet reached its
187 # terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of JOB_READY
188 # event, job-cancel or job-complete will still need to be used as appropriate.
190 # @id: The job identifier.
194 { 'command': 'job-dismiss', 'data': { 'id': 'str' } }
199 # Instructs all jobs in a transaction (or a single job if it is not part of any
200 # transaction) to finalize any graph changes and do any necessary cleanup. This
201 # command requires that all involved jobs are in the PENDING state.
203 # For jobs in a transaction, instructing one job to finalize will force
204 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
205 # a single member job to finalize.
207 # @id: The identifier of any job in the transaction, or of a job that is not
208 # part of any transaction.
212 { 'command': 'job-finalize', 'data': { 'id': 'str' } }
217 # Information about a job.
219 # @id: The job identifier
221 # @type: The kind of job that is being performed
223 # @status: Current job state/status
225 # @current-progress: Progress made until now. The unit is arbitrary and the
226 # value can only meaningfully be used for the ratio of
227 # @current-progress to @total-progress. The value is
228 # monotonically increasing.
230 # @total-progress: Estimated @current-progress value at the completion of
231 # the job. This value can arbitrarily change while the
232 # job is running, in both directions.
234 # @error: If this field is present, the job failed; if it is
235 # still missing in the CONCLUDED state, this indicates
236 # successful completion.
238 # The value is a human-readable error message to describe
239 # the reason for the job failure. It should not be parsed
244 { 'struct': 'JobInfo',
245 'data': { 'id': 'str', 'type': 'JobType', 'status': 'JobStatus',
246 'current-progress': 'int', 'total-progress': 'int',
252 # Return information about jobs.
254 # Returns: a list with a @JobInfo for each active job
258 { 'command': 'query-jobs', 'returns': ['JobInfo'] }