Features/ImageStreamingAPI: Difference between revisions

From QEMU
(Created page with '=Changelog= v2: * Remove iteration interface where management tool drives individual copy iterations * Add block_stream_cancel command (like migrate_cancel) * Add 'base' common b…')
 
No edit summary
Line 1: Line 1:
=Changelog=
=Changelog=
v3:
* Rename cancel and info operations to make a reusable block job API
v2:
v2:
* Remove iteration interface where management tool drives individual copy iterations
* Remove iteration interface where management tool drives individual copy iterations
Line 14: Line 17:
post-copy live block migration and rapid deployment.
post-copy live block migration and rapid deployment.


The block_stream command starts streaming the image file.  When streaming
The block_stream command starts streaming the image file.  Streaming is
completes successfully or with an error, the BLOCK_STREAM_COMPLETED event is
performed in the background while the guest is running.
raised.


The progress of a streaming operation can be polled using query-block-stream.
When streaming completes successfully or with an error, the BLOCK_JOB_COMPLETED
This returns information regarding how much of the image has been streamed.
event is raised.


The block_stream_cancel command stops streaming the image file.  The image file
The progress of a streaming operation can be polled using query-block-jobs.
This returns information regarding how much of the image has been streamed for
each active streaming operation.
 
The block_job_cancel command stops streaming the image file.  The image file
retains its backing file.  A new streaming operation can be started at a later
retains its backing file.  A new streaming operation can be started at a later
time.
time.
Line 35: Line 41:
  backing file has been copied.  This command returns immediately once streaming
  backing file has been copied.  This command returns immediately once streaming
  has started.  The status of ongoing block streaming operations can be checked
  has started.  The status of ongoing block streaming operations can be checked
  with query-block-stream.  The operation can be stopped before it has completed
  with query-block-jobs.  The operation can be stopped before it has completed
  using the block_stream_cancel command.
  using the block_job_cancel command.
   
   
  If a base file is specified then sectors are not copied from that base file and
  If a base file is specified then sectors are not copied from that base file and
Line 58: Line 64:
  Events:
  Events:
   
   
  On completion the BLOCK_STREAM_COMPLETED event is raised with the following
  On completion the BLOCK_JOB_COMPLETED event is raised with the following
  fields:
  fields:
   
   
  - device: device name (json-string)
  - device:   device name (json-string)
  - len:   size of the device, in bytes (json-int)
  - end:     maximum progress value (json-int)
  - offset: last offset of completed I/O, in bytes (json-int)
  - position: current progress value (json-int)
  - error: error message (json-string, only on error)
  - error:   error message (json-string, only on error)
   
   
  The completion event is raised both on success and on failure.
  The completion event is raised both on success and on failure.  On
success position is equal to end.  On failure position and end can be
used to indicate at which point the operation failed.
   
   
  Examples:
  Examples:
Line 73: Line 81:
  <- { "return":  {} }
  <- { "return":  {} }
   
   
  block_stream_cancel
  block_job_cancel
  -------------------
  ----------------
   
   
  Stop an active block streaming operation.
  Stop an active block streaming operation.
Line 98: Line 106:
  Examples:
  Examples:
   
   
  -> { "execute": "block_stream_cancel", "arguments": { "device": "virtio0" } }
  -> { "execute": "block_job_cancel", "arguments": { "device": "virtio0" } }
  <- { "return":  {} }
  <- { "return":  {} }
   
   
  query-block-stream
  query-block-jobs
  ------------------
  ----------------
   
   
  Show progress of ongoing block_stream operations.
  Show progress of ongoing block device operations.
   
   
  Return a json-array of all block streaming operations.  If no operation is
  Return a json-array of all block device operations.  If no operation is
  active then return an empty array.  Each operation is a json-object with the
  active then return an empty array.  Each operation is a json-object with the
  following data:
  following data:
   
   
  - device: device name (json-string)
- type:    job type ("stream" for image streaming, json-string)
  - len:   size of the device, in bytes (json-int)
  - device:   device name (json-string)
  - offset: ending offset of the completed I/O, in bytes (json-int)
  - end:     maximum progress value (json-int)
  - position: current progress value (json-int)
Progress can be observed as position increases and it reaches end when
the operation completes.  Position and end have undefined units but can be
used to calculate a percentage indicating the progress that has been made.
   
   
  Example:
  Example:
Line 118: Line 131:
  -> { "execute": "query-block-stream" }
  -> { "execute": "query-block-stream" }
  <- { "return":[
  <- { "return":[
       { "device": "virtio0", "len": 10737418240, "offset": 709632}
       { "type": "stream", "device": "virtio0",
        "end": 10737418240, "position": 709632}
     ]
     ]
   }
   }

Revision as of 12:55, 15 July 2011

Changelog

v3:

  • Rename cancel and info operations to make a reusable block job API

v2:

  • Remove iteration interface where management tool drives individual copy iterations
  • Add block_stream_cancel command (like migrate_cancel)
  • Add 'base' common backing file argument to block_stream
  • Replace QError object in BLOCK_STREAM_COMPLETED with an error string
  • Add error documentation

Image streaming API

The stream commands populate an image file by streaming data from its backing file. Once all blocks have been streamed, the dependency on the original backing image is removed. The stream commands can be used to implement post-copy live block migration and rapid deployment.

The block_stream command starts streaming the image file. Streaming is performed in the background while the guest is running.

When streaming completes successfully or with an error, the BLOCK_JOB_COMPLETED event is raised.

The progress of a streaming operation can be polled using query-block-jobs. This returns information regarding how much of the image has been streamed for each active streaming operation.

The block_job_cancel command stops streaming the image file. The image file retains its backing file. A new streaming operation can be started at a later time.

The command synopses are as follows:

block_stream
------------

Copy data from a backing file into a block device.

The block streaming operation is performed in the background until the entire
backing file has been copied.  This command returns immediately once streaming
has started.  The status of ongoing block streaming operations can be checked
with query-block-jobs.  The operation can be stopped before it has completed
using the block_job_cancel command.

If a base file is specified then sectors are not copied from that base file and
its backing chain.  When streaming completes the image file will have the base
file as its backing file.  This can be used to stream a subset of the backing
file chain instead of flattening the entire image.

On successful completion the image file is updated to drop the backing file.

Arguments:

- device: device name (json-string)
- base:   common backing file (json-string, optional)

Errors:

DeviceInUse:    streaming is already active on this device
DeviceNotFound: device name is invalid
NotSupported:   image streaming is not supported by this device

Events:

On completion the BLOCK_JOB_COMPLETED event is raised with the following
fields:

- device:   device name (json-string)
- end:      maximum progress value (json-int)
- position: current progress value (json-int)
- error:    error message (json-string, only on error)

The completion event is raised both on success and on failure.  On
success position is equal to end.  On failure position and end can be
used to indicate at which point the operation failed.

Examples:

-> { "execute": "block_stream", "arguments": { "device": "virtio0" } }
<- { "return":  {} }

block_job_cancel
----------------

Stop an active block streaming operation.

This command returns once the active block streaming operation has been
stopped.  It is an error to call this command if no operation is in progress.

The image file retains its backing file unless the streaming operation happens
to complete just as it is being cancelled.

A new block streaming operation can be started at a later time to finish
copying all data from the backing file.

Arguments:

- device: device name (json-string)

Errors:

DeviceNotActive: streaming is not active on this device
DeviceInUse:     cancellation already in progress

Examples:

-> { "execute": "block_job_cancel", "arguments": { "device": "virtio0" } }
<- { "return":  {} }

query-block-jobs
----------------

Show progress of ongoing block device operations.

Return a json-array of all block device operations.  If no operation is
active then return an empty array.  Each operation is a json-object with the
following data:

- type:     job type ("stream" for image streaming, json-string)
- device:   device name (json-string)
- end:      maximum progress value (json-int)
- position: current progress value (json-int)

Progress can be observed as position increases and it reaches end when
the operation completes.  Position and end have undefined units but can be
used to calculate a percentage indicating the progress that has been made.

Example:

-> { "execute": "query-block-stream" }
<- { "return":[
      { "type": "stream", "device": "virtio0",
        "end": 10737418240, "position": 709632}
   ]
 }

How live block copy works

Live block copy does the following:

  1. Create and switch to the destination file: snapshot_blkdev virtio-blk0 destination.$fmt $fmt
  2. Stream the base into the image file: block_stream -a virtio-blk0