migration: Improve QMP documentation

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
Juan Quintela 2013-02-11 15:11:10 +01:00
parent dcadaa9b40
commit 817c60457f

View file

@ -644,7 +644,7 @@ EQMP
SQMP SQMP
migrate-set-cache-size migrate-set-cache-size
--------------------- ----------------------
Set cache size to be used by XBZRLE migration, the cache size will be rounded Set cache size to be used by XBZRLE migration, the cache size will be rounded
down to the nearest power of 2 down to the nearest power of 2
@ -667,7 +667,7 @@ EQMP
SQMP SQMP
query-migrate-cache-size query-migrate-cache-size
--------------------- ------------------------
Show cache size to be used by XBZRLE migration Show cache size to be used by XBZRLE migration
@ -2438,25 +2438,35 @@ The main json-object contains the following:
total amount in ms for downtime that was calculated on total amount in ms for downtime that was calculated on
the last bitmap round (json-int) the last bitmap round (json-int)
- "ram": only present if "status" is "active", it is a json-object with the - "ram": only present if "status" is "active", it is a json-object with the
following RAM information (in bytes): following RAM information:
- "transferred": amount transferred (json-int) - "transferred": amount transferred in bytes (json-int)
- "remaining": amount remaining (json-int) - "remaining": amount remaining to transfer in bytes (json-int)
- "total": total (json-int) - "total": total amount of memory in bytes (json-int)
- "duplicate": number of duplicated pages (json-int) - "duplicate": number of pages filled entirely with the same
- "normal" : number of normal pages transferred (json-int) byte (json-int)
- "normal-bytes" : number of normal bytes transferred (json-int) These are sent over the wire much more efficiently.
- "normal" : number of whole pages transfered. I.e. they
were not sent as duplicate or xbzrle pages (json-int)
- "normal-bytes" : number of bytes transferred in whole
pages. This is just normal pages times size of one page,
but this way upper levels don't need to care about page
size (json-int)
- "disk": only present if "status" is "active" and it is a block migration, - "disk": only present if "status" is "active" and it is a block migration,
it is a json-object with the following disk information (in bytes): it is a json-object with the following disk information:
- "transferred": amount transferred (json-int) - "transferred": amount transferred in bytes (json-int)
- "remaining": amount remaining (json-int) - "remaining": amount remaining to transfer in bytes json-int)
- "total": total (json-int) - "total": total disk size in bytes (json-int)
- "xbzrle-cache": only present if XBZRLE is active. - "xbzrle-cache": only present if XBZRLE is active.
It is a json-object with the following XBZRLE information: It is a json-object with the following XBZRLE information:
- "cache-size": XBZRLE cache size - "cache-size": XBZRLE cache size in bytes
- "bytes": total XBZRLE bytes transferred - "bytes": number of bytes transferred for XBZRLE compressed pages
- "pages": number of XBZRLE compressed pages - "pages": number of XBZRLE compressed pages
- "cache-miss": number of cache misses - "cache-miss": number of XBRZRLE page cache misses
- "overflow": number of XBZRLE overflows - "overflow": number of times XBZRLE overflows. This means
that the XBZRLE encoding was bigger than just sent the
whole page, and then we sent the whole page instead (as as
normal page).
Examples: Examples:
1. Before the first migration 1. Before the first migration
@ -2567,11 +2577,11 @@ EQMP
SQMP SQMP
migrate-set-capabilities migrate-set-capabilities
------- ------------------------
Enable/Disable migration capabilities Enable/Disable migration capabilities
- "xbzrle": xbzrle support - "xbzrle": XBZRLE support
Arguments: Arguments:
@ -2590,7 +2600,7 @@ EQMP
}, },
SQMP SQMP
query-migrate-capabilities query-migrate-capabilities
------- --------------------------
Query current migration capabilities Query current migration capabilities