8 { 'include': 'common.json' }
13 # Detailed migration status.
15 # @transferred: amount of bytes already transferred to the target VM
17 # @remaining: amount of bytes remaining to be transferred to the target VM
19 # @total: total amount of bytes involved in the migration process
21 # @duplicate: number of duplicate (zero) pages (since 1.2)
23 # @skipped: number of skipped zero pages (since 1.5)
25 # @normal: number of normal pages (since 1.2)
27 # @normal-bytes: number of normal bytes sent (since 1.2)
29 # @dirty-pages-rate: number of pages dirtied by second by the
32 # @mbps: throughput in megabits/sec. (since 1.6)
34 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
36 # @postcopy-requests: The number of page requests received from the destination
39 # @page-size: The number of bytes per page for the various page-based
40 # statistics (since 2.10)
44 { 'struct': 'MigrationStats',
45 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
46 'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
47 'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
48 'mbps' : 'number', 'dirty-sync-count' : 'int',
49 'postcopy-requests' : 'int', 'page-size' : 'int' } }
54 # Detailed XBZRLE migration cache statistics
56 # @cache-size: XBZRLE cache size
58 # @bytes: amount of bytes already transferred to the target VM
60 # @pages: amount of pages transferred to the target VM
62 # @cache-miss: number of cache miss
64 # @cache-miss-rate: rate of cache miss (since 2.1)
66 # @overflow: number of overflows
70 { 'struct': 'XBZRLECacheStats',
71 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
72 'cache-miss': 'int', 'cache-miss-rate': 'number',
78 # An enumeration of migration status.
80 # @none: no migration has ever happened.
82 # @setup: migration process has been initiated.
84 # @cancelling: in the process of cancelling migration.
86 # @cancelled: cancelling migration is finished.
88 # @active: in the process of doing migration.
90 # @postcopy-active: like active, but now in postcopy mode. (since 2.5)
92 # @completed: migration is finished.
94 # @failed: some error occurred during migration process.
96 # @colo: VM is in the process of fault tolerance, VM can not get into this
97 # state unless colo capability is enabled for migration. (since 2.8)
102 { 'enum': 'MigrationStatus',
103 'data': [ 'none', 'setup', 'cancelling', 'cancelled',
104 'active', 'postcopy-active', 'completed', 'failed', 'colo' ] }
109 # Information about current migration process.
111 # @status: @MigrationStatus describing the current migration status.
112 # If this field is not returned, no migration process
115 # @ram: @MigrationStats containing detailed migration
116 # status, only returned if status is 'active' or
117 # 'completed'(since 1.2)
119 # @disk: @MigrationStats containing detailed disk migration
120 # status, only returned if status is 'active' and it is a block
123 # @xbzrle-cache: @XBZRLECacheStats containing detailed XBZRLE
124 # migration statistics, only returned if XBZRLE feature is on and
125 # status is 'active' or 'completed' (since 1.2)
127 # @total-time: total amount of milliseconds since migration started.
128 # If migration has ended, it returns the total migration
131 # @downtime: only present when migration finishes correctly
132 # total downtime in milliseconds for the guest.
135 # @expected-downtime: only present while migration is active
136 # expected downtime in milliseconds for the guest in last walk
137 # of the dirty bitmap. (since 1.3)
139 # @setup-time: amount of setup time in milliseconds _before_ the
140 # iterations begin but _after_ the QMP command is issued. This is designed
141 # to provide an accounting of any activities (such as RDMA pinning) which
142 # may be expensive, but do not actually occur during the iterative
143 # migration rounds themselves. (since 1.6)
145 # @cpu-throttle-percentage: percentage of time guest cpus are being
146 # throttled during auto-converge. This is only present when auto-converge
147 # has started throttling guest cpus. (Since 2.7)
149 # @error-desc: the human readable error description string, when
150 # @status is 'failed'. Clients should not attempt to parse the
151 # error strings. (Since 2.7)
155 { 'struct': 'MigrationInfo',
156 'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
157 '*disk': 'MigrationStats',
158 '*xbzrle-cache': 'XBZRLECacheStats',
159 '*total-time': 'int',
160 '*expected-downtime': 'int',
162 '*setup-time': 'int',
163 '*cpu-throttle-percentage': 'int',
164 '*error-desc': 'str'} }
169 # Returns information about current migration process. If migration
170 # is active there will be another json-object with RAM migration
171 # status and if block migration is active another one with block
174 # Returns: @MigrationInfo
180 # 1. Before the first migration
182 # -> { "execute": "query-migrate" }
183 # <- { "return": {} }
185 # 2. Migration is done and has succeeded
187 # -> { "execute": "query-migrate" }
189 # "status": "completed",
194 # "total-time":12345,
195 # "setup-time":12345,
199 # "normal-bytes":123456,
200 # "dirty-sync-count":15
205 # 3. Migration is done and has failed
207 # -> { "execute": "query-migrate" }
208 # <- { "return": { "status": "failed" } }
210 # 4. Migration is being performed and is not a block migration:
212 # -> { "execute": "query-migrate" }
220 # "total-time":12345,
221 # "setup-time":12345,
222 # "expected-downtime":12345,
225 # "normal-bytes":123456,
226 # "dirty-sync-count":15
231 # 5. Migration is being performed and is a block migration:
233 # -> { "execute": "query-migrate" }
239 # "remaining":1053304,
240 # "transferred":3720,
241 # "total-time":12345,
242 # "setup-time":12345,
243 # "expected-downtime":12345,
246 # "normal-bytes":123456,
247 # "dirty-sync-count":15
251 # "remaining":20880384,
252 # "transferred":91136
257 # 6. Migration is being performed and XBZRLE is active:
259 # -> { "execute": "query-migrate" }
263 # "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
266 # "remaining":1053304,
267 # "transferred":3720,
268 # "total-time":12345,
269 # "setup-time":12345,
270 # "expected-downtime":12345,
273 # "normal-bytes":3412992,
274 # "dirty-sync-count":15
277 # "cache-size":67108864,
281 # "cache-miss-rate":0.123,
288 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
291 # @MigrationCapability:
293 # Migration capabilities enumeration
295 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
296 # This feature allows us to minimize migration traffic for certain work
297 # loads, by sending compressed difference of the pages
299 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
300 # mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
301 # Disabled by default. (since 2.0)
303 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
304 # essentially saves 1MB of zeroes per block on the wire. Enabling requires
305 # source and target VM to support this feature. To enable it is sufficient
306 # to enable the capability on the source VM. The feature is disabled by
307 # default. (since 1.6)
309 # @compress: Use multiple compression threads to accelerate live migration.
310 # This feature can help to reduce the migration traffic, by sending
311 # compressed pages. Please note that if compress and xbzrle are both
312 # on, compress only takes effect in the ram bulk stage, after that,
313 # it will be disabled and only xbzrle takes effect, this can help to
314 # minimize migration traffic. The feature is disabled by default.
317 # @events: generate events for each migration state change
320 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
321 # to speed up convergence of RAM migration. (since 1.6)
323 # @postcopy-ram: Start executing on the migration target before all of RAM has
324 # been migrated, pulling the remaining pages along as needed. NOTE: If
325 # the migration fails during postcopy the VM will fail. (since 2.6)
327 # @x-colo: If enabled, migration will never end, and the state of the VM on the
328 # primary side will be migrated continuously to the VM on secondary
329 # side, this process is called COarse-Grain LOck Stepping (COLO) for
330 # Non-stop Service. (since 2.8)
332 # @release-ram: if enabled, qemu will free the migrated ram pages on the source
333 # during postcopy-ram migration. (since 2.9)
335 # @block: If enabled, QEMU will also migrate the contents of all block
336 # devices. Default is disabled. A possible alternative uses
337 # mirror jobs to a builtin NBD server on the destination, which
338 # offers more flexibility.
341 # @return-path: If enabled, migration will use the return path even
342 # for precopy. (since 2.10)
344 # @x-multifd: Use more than one fd for migration (since 2.11)
348 { 'enum': 'MigrationCapability',
349 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
350 'compress', 'events', 'postcopy-ram', 'x-colo', 'release-ram',
351 'block', 'return-path', 'x-multifd' ] }
354 # @MigrationCapabilityStatus:
356 # Migration capability information
358 # @capability: capability enum
360 # @state: capability state bool
364 { 'struct': 'MigrationCapabilityStatus',
365 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
368 # @migrate-set-capabilities:
370 # Enable/Disable the following migration capabilities (like xbzrle)
372 # @capabilities: json array of capability modifications to make
378 # -> { "execute": "migrate-set-capabilities" , "arguments":
379 # { "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
382 { 'command': 'migrate-set-capabilities',
383 'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
386 # @query-migrate-capabilities:
388 # Returns information about the current migration capabilities status
390 # Returns: @MigrationCapabilitiesStatus
396 # -> { "execute": "query-migrate-capabilities" }
398 # {"state": false, "capability": "xbzrle"},
399 # {"state": false, "capability": "rdma-pin-all"},
400 # {"state": false, "capability": "auto-converge"},
401 # {"state": false, "capability": "zero-blocks"},
402 # {"state": false, "capability": "compress"},
403 # {"state": true, "capability": "events"},
404 # {"state": false, "capability": "postcopy-ram"},
405 # {"state": false, "capability": "x-colo"}
409 { 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']}
412 # @MigrationParameter:
414 # Migration parameters enumeration
416 # @compress-level: Set the compression level to be used in live migration,
417 # the compression level is an integer between 0 and 9, where 0 means
418 # no compression, 1 means the best compression speed, and 9 means best
419 # compression ratio which will consume more CPU.
421 # @compress-threads: Set compression thread count to be used in live migration,
422 # the compression thread count is an integer between 1 and 255.
424 # @decompress-threads: Set decompression thread count to be used in live
425 # migration, the decompression thread count is an integer between 1
426 # and 255. Usually, decompression is at least 4 times as fast as
427 # compression, so set the decompress-threads to the number about 1/4
428 # of compress-threads is adequate.
430 # @cpu-throttle-initial: Initial percentage of time guest cpus are throttled
431 # when migration auto-converge is activated. The
432 # default value is 20. (Since 2.7)
434 # @cpu-throttle-increment: throttle percentage increase each time
435 # auto-converge detects that migration is not making
436 # progress. The default value is 10. (Since 2.7)
438 # @tls-creds: ID of the 'tls-creds' object that provides credentials for
439 # establishing a TLS connection over the migration data channel.
440 # On the outgoing side of the migration, the credentials must
441 # be for a 'client' endpoint, while for the incoming side the
442 # credentials must be for a 'server' endpoint. Setting this
443 # will enable TLS for all migrations. The default is unset,
444 # resulting in unsecured migration at the QEMU level. (Since 2.7)
446 # @tls-hostname: hostname of the target host for the migration. This is
447 # required when using x509 based TLS credentials and the
448 # migration URI does not already include a hostname. For
449 # example if using fd: or exec: based migration, the
450 # hostname must be provided so that the server's x509
451 # certificate identity can be validated. (Since 2.7)
453 # @max-bandwidth: to set maximum speed for migration. maximum speed in
454 # bytes per second. (Since 2.8)
456 # @downtime-limit: set maximum tolerated downtime for migration. maximum
457 # downtime in milliseconds (Since 2.8)
459 # @x-checkpoint-delay: The delay time (in ms) between two COLO checkpoints in
460 # periodic mode. (Since 2.8)
462 # @block-incremental: Affects how much storage is migrated when the
463 # block migration capability is enabled. When false, the entire
464 # storage backing chain is migrated into a flattened image at
465 # the destination; when true, only the active qcow2 layer is
466 # migrated and the destination must already have access to the
467 # same backing chain as was used on the source. (since 2.10)
469 # @x-multifd-channels: Number of channels used to migrate data in
470 # parallel. This is the same number that the
471 # number of sockets used for migration. The
472 # default value is 2 (since 2.11)
474 # @x-multifd-page-count: Number of pages sent together to a thread
475 # The default value is 16 (since 2.11)
479 { 'enum': 'MigrationParameter',
480 'data': ['compress-level', 'compress-threads', 'decompress-threads',
481 'cpu-throttle-initial', 'cpu-throttle-increment',
482 'tls-creds', 'tls-hostname', 'max-bandwidth',
483 'downtime-limit', 'x-checkpoint-delay', 'block-incremental',
484 'x-multifd-channels', 'x-multifd-page-count' ] }
487 # @MigrateSetParameters:
489 # @compress-level: compression level
491 # @compress-threads: compression thread count
493 # @decompress-threads: decompression thread count
495 # @cpu-throttle-initial: Initial percentage of time guest cpus are
496 # throttled when migration auto-converge is activated.
497 # The default value is 20. (Since 2.7)
499 # @cpu-throttle-increment: throttle percentage increase each time
500 # auto-converge detects that migration is not making
501 # progress. The default value is 10. (Since 2.7)
503 # @tls-creds: ID of the 'tls-creds' object that provides credentials
504 # for establishing a TLS connection over the migration data
505 # channel. On the outgoing side of the migration, the credentials
506 # must be for a 'client' endpoint, while for the incoming side the
507 # credentials must be for a 'server' endpoint. Setting this
508 # to a non-empty string enables TLS for all migrations.
509 # An empty string means that QEMU will use plain text mode for
510 # migration, rather than TLS (Since 2.9)
511 # Previously (since 2.7), this was reported by omitting
514 # @tls-hostname: hostname of the target host for the migration. This
515 # is required when using x509 based TLS credentials and the
516 # migration URI does not already include a hostname. For
517 # example if using fd: or exec: based migration, the
518 # hostname must be provided so that the server's x509
519 # certificate identity can be validated. (Since 2.7)
520 # An empty string means that QEMU will use the hostname
521 # associated with the migration URI, if any. (Since 2.9)
522 # Previously (since 2.7), this was reported by omitting
523 # tls-hostname instead.
525 # @max-bandwidth: to set maximum speed for migration. maximum speed in
526 # bytes per second. (Since 2.8)
528 # @downtime-limit: set maximum tolerated downtime for migration. maximum
529 # downtime in milliseconds (Since 2.8)
531 # @x-checkpoint-delay: the delay time between two COLO checkpoints. (Since 2.8)
533 # @block-incremental: Affects how much storage is migrated when the
534 # block migration capability is enabled. When false, the entire
535 # storage backing chain is migrated into a flattened image at
536 # the destination; when true, only the active qcow2 layer is
537 # migrated and the destination must already have access to the
538 # same backing chain as was used on the source. (since 2.10)
540 # @x-multifd-channels: Number of channels used to migrate data in
541 # parallel. This is the same number that the
542 # number of sockets used for migration. The
543 # default value is 2 (since 2.11)
545 # @x-multifd-page-count: Number of pages sent together to a thread
546 # The default value is 16 (since 2.11)
550 # TODO either fuse back into MigrationParameters, or make
551 # MigrationParameters members mandatory
552 { 'struct': 'MigrateSetParameters',
553 'data': { '*compress-level': 'int',
554 '*compress-threads': 'int',
555 '*decompress-threads': 'int',
556 '*cpu-throttle-initial': 'int',
557 '*cpu-throttle-increment': 'int',
558 '*tls-creds': 'StrOrNull',
559 '*tls-hostname': 'StrOrNull',
560 '*max-bandwidth': 'int',
561 '*downtime-limit': 'int',
562 '*x-checkpoint-delay': 'int',
563 '*block-incremental': 'bool',
564 '*x-multifd-channels': 'int',
565 '*x-multifd-page-count': 'int' } }
568 # @migrate-set-parameters:
570 # Set various migration parameters.
576 # -> { "execute": "migrate-set-parameters" ,
577 # "arguments": { "compress-level": 1 } }
580 { 'command': 'migrate-set-parameters', 'boxed': true,
581 'data': 'MigrateSetParameters' }
584 # @MigrationParameters:
586 # The optional members aren't actually optional.
588 # @compress-level: compression level
590 # @compress-threads: compression thread count
592 # @decompress-threads: decompression thread count
594 # @cpu-throttle-initial: Initial percentage of time guest cpus are
595 # throttled when migration auto-converge is activated.
598 # @cpu-throttle-increment: throttle percentage increase each time
599 # auto-converge detects that migration is not making
600 # progress. (Since 2.7)
602 # @tls-creds: ID of the 'tls-creds' object that provides credentials
603 # for establishing a TLS connection over the migration data
604 # channel. On the outgoing side of the migration, the credentials
605 # must be for a 'client' endpoint, while for the incoming side the
606 # credentials must be for a 'server' endpoint.
607 # An empty string means that QEMU will use plain text mode for
608 # migration, rather than TLS (Since 2.7)
609 # Note: 2.8 reports this by omitting tls-creds instead.
611 # @tls-hostname: hostname of the target host for the migration. This
612 # is required when using x509 based TLS credentials and the
613 # migration URI does not already include a hostname. For
614 # example if using fd: or exec: based migration, the
615 # hostname must be provided so that the server's x509
616 # certificate identity can be validated. (Since 2.7)
617 # An empty string means that QEMU will use the hostname
618 # associated with the migration URI, if any. (Since 2.9)
619 # Note: 2.8 reports this by omitting tls-hostname instead.
621 # @max-bandwidth: to set maximum speed for migration. maximum speed in
622 # bytes per second. (Since 2.8)
624 # @downtime-limit: set maximum tolerated downtime for migration. maximum
625 # downtime in milliseconds (Since 2.8)
627 # @x-checkpoint-delay: the delay time between two COLO checkpoints. (Since 2.8)
629 # @block-incremental: Affects how much storage is migrated when the
630 # block migration capability is enabled. When false, the entire
631 # storage backing chain is migrated into a flattened image at
632 # the destination; when true, only the active qcow2 layer is
633 # migrated and the destination must already have access to the
634 # same backing chain as was used on the source. (since 2.10)
636 # @x-multifd-channels: Number of channels used to migrate data in
637 # parallel. This is the same number that the
638 # number of sockets used for migration.
639 # The default value is 2 (since 2.11)
641 # @x-multifd-page-count: Number of pages sent together to a thread
642 # The default value is 16 (since 2.11)
646 { 'struct': 'MigrationParameters',
647 'data': { '*compress-level': 'int',
648 '*compress-threads': 'int',
649 '*decompress-threads': 'int',
650 '*cpu-throttle-initial': 'int',
651 '*cpu-throttle-increment': 'int',
653 '*tls-hostname': 'str',
654 '*max-bandwidth': 'int',
655 '*downtime-limit': 'int',
656 '*x-checkpoint-delay': 'int',
657 '*block-incremental': 'bool' ,
658 '*x-multifd-channels': 'int',
659 '*x-multifd-page-count': 'int' } }
662 # @query-migrate-parameters:
664 # Returns information about the current migration parameters
666 # Returns: @MigrationParameters
672 # -> { "execute": "query-migrate-parameters" }
674 # "decompress-threads": 2,
675 # "cpu-throttle-increment": 10,
676 # "compress-threads": 8,
677 # "compress-level": 1,
678 # "cpu-throttle-initial": 20,
679 # "max-bandwidth": 33554432,
680 # "downtime-limit": 300
685 { 'command': 'query-migrate-parameters',
686 'returns': 'MigrationParameters' }
689 # @client_migrate_info:
691 # Set migration information for remote display. This makes the server
692 # ask the client to automatically reconnect using the new parameters
693 # once migration finished successfully. Only implemented for SPICE.
695 # @protocol: must be "spice"
696 # @hostname: migration target hostname
697 # @port: spice tcp port for plaintext channels
698 # @tls-port: spice tcp port for tls-secured channels
699 # @cert-subject: server certificate subject
705 # -> { "execute": "client_migrate_info",
706 # "arguments": { "protocol": "spice",
707 # "hostname": "virt42.lab.kraxel.org",
709 # <- { "return": {} }
712 { 'command': 'client_migrate_info',
713 'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
714 '*tls-port': 'int', '*cert-subject': 'str' } }
717 # @migrate-start-postcopy:
719 # Followup to a migration command to switch the migration to postcopy mode.
720 # The postcopy-ram capability must be set before the original migration
727 # -> { "execute": "migrate-start-postcopy" }
728 # <- { "return": {} }
731 { 'command': 'migrate-start-postcopy' }
736 # Emitted when a migration event happens
738 # @status: @MigrationStatus describing the current migration status.
744 # <- {"timestamp": {"seconds": 1432121972, "microseconds": 744001},
745 # "event": "MIGRATION",
746 # "data": {"status": "completed"} }
749 { 'event': 'MIGRATION',
750 'data': {'status': 'MigrationStatus'}}
755 # Emitted from the source side of a migration at the start of each pass
756 # (when it syncs the dirty bitmap)
758 # @pass: An incrementing count (starting at 1 on the first pass)
764 # { "timestamp": {"seconds": 1449669631, "microseconds": 239225},
765 # "event": "MIGRATION_PASS", "data": {"pass": 2} }
768 { 'event': 'MIGRATION_PASS',
769 'data': { 'pass': 'int' } }
774 # The message transmission between Primary side and Secondary side.
776 # @checkpoint-ready: Secondary VM (SVM) is ready for checkpointing
778 # @checkpoint-request: Primary VM (PVM) tells SVM to prepare for checkpointing
780 # @checkpoint-reply: SVM gets PVM's checkpoint request
782 # @vmstate-send: VM's state will be sent by PVM.
784 # @vmstate-size: The total size of VMstate.
786 # @vmstate-received: VM's state has been received by SVM.
788 # @vmstate-loaded: VM's state has been loaded by SVM.
792 { 'enum': 'COLOMessage',
793 'data': [ 'checkpoint-ready', 'checkpoint-request', 'checkpoint-reply',
794 'vmstate-send', 'vmstate-size', 'vmstate-received',
802 # @unknown: unknown mode
804 # @primary: master side
806 # @secondary: slave side
810 { 'enum': 'COLOMode',
811 'data': [ 'unknown', 'primary', 'secondary'] }
816 # An enumeration of COLO failover status
818 # @none: no failover has ever happened
820 # @require: got failover requirement but not handled
822 # @active: in the process of doing failover
824 # @completed: finish the process of failover
826 # @relaunch: restart the failover process, from 'none' -> 'completed' (Since 2.9)
830 { 'enum': 'FailoverStatus',
831 'data': [ 'none', 'require', 'active', 'completed', 'relaunch' ] }
834 # @x-colo-lost-heartbeat:
836 # Tell qemu that heartbeat is lost, request it to do takeover procedures.
837 # If this command is sent to the PVM, the Primary side will exit COLO mode.
838 # If sent to the Secondary, the Secondary side will run failover work,
839 # then takes over server operation to become the service VM.
845 # -> { "execute": "x-colo-lost-heartbeat" }
846 # <- { "return": {} }
849 { 'command': 'x-colo-lost-heartbeat' }
854 # Cancel the current executing migration process.
856 # Returns: nothing on success
858 # Notes: This command succeeds even if there is no migration process running.
864 # -> { "execute": "migrate_cancel" }
865 # <- { "return": {} }
868 { 'command': 'migrate_cancel' }
871 # @migrate_set_downtime:
873 # Set maximum tolerated downtime for migration.
875 # @value: maximum downtime in seconds
877 # Returns: nothing on success
879 # Notes: This command is deprecated in favor of 'migrate-set-parameters'
885 # -> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
886 # <- { "return": {} }
889 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
892 # @migrate_set_speed:
894 # Set maximum speed for migration.
896 # @value: maximum speed in bytes per second.
898 # Returns: nothing on success
900 # Notes: This command is deprecated in favor of 'migrate-set-parameters'
906 # -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
907 # <- { "return": {} }
910 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
913 # @migrate-set-cache-size:
915 # Set cache size to be used by XBZRLE migration
917 # @value: cache size in bytes
919 # The size will be rounded down to the nearest power of 2.
920 # The cache size can be modified before and during ongoing migration
922 # Returns: nothing on success
928 # -> { "execute": "migrate-set-cache-size",
929 # "arguments": { "value": 536870912 } }
930 # <- { "return": {} }
933 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
936 # @query-migrate-cache-size:
938 # Query migration XBZRLE cache size
940 # Returns: XBZRLE cache size in bytes
946 # -> { "execute": "query-migrate-cache-size" }
947 # <- { "return": 67108864 }
950 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
955 # Migrates the current running guest to another Virtual Machine.
957 # @uri: the Uniform Resource Identifier of the destination VM
959 # @blk: do block migration (full disk copy)
961 # @inc: incremental disk copy migration
963 # @detach: this argument exists only for compatibility reasons and
966 # Returns: nothing on success
972 # 1. The 'query-migrate' command should be used to check migration's progress
973 # and final result (this information is provided by the 'status' member)
975 # 2. All boolean arguments default to false
977 # 3. The user Monitor's "detach" argument is invalid in QMP and should not
982 # -> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
983 # <- { "return": {} }
986 { 'command': 'migrate',
987 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
992 # Start an incoming migration, the qemu must have been started
993 # with -incoming defer
995 # @uri: The Uniform Resource Identifier identifying the source or
996 # address to listen on
998 # Returns: nothing on success
1004 # 1. It's a bad idea to use a string for the uri, but it needs to stay
1005 # compatible with -incoming and the format of the uri is already exposed
1008 # 2. QEMU must be started with -incoming defer to allow migrate-incoming to
1011 # 3. The uri format is the same as for -incoming
1015 # -> { "execute": "migrate-incoming",
1016 # "arguments": { "uri": "tcp::4446" } }
1017 # <- { "return": {} }
1020 { 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
1023 # @xen-save-devices-state:
1025 # Save the state of all devices to file. The RAM and the block devices
1026 # of the VM are not saved by this command.
1028 # @filename: the file to save the state of the devices to as binary
1029 # data. See xen-save-devices-state.txt for a description of the binary
1032 # Returns: Nothing on success
1038 # -> { "execute": "xen-save-devices-state",
1039 # "arguments": { "filename": "/tmp/save" } }
1040 # <- { "return": {} }
1043 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1046 # @xen-set-replication:
1048 # Enable or disable replication.
1050 # @enable: true to enable, false to disable.
1052 # @primary: true for primary or false for secondary.
1054 # @failover: true to do failover, false to stop. but cannot be
1055 # specified if 'enable' is true. default value is false.
1061 # -> { "execute": "xen-set-replication",
1062 # "arguments": {"enable": true, "primary": false} }
1063 # <- { "return": {} }
1067 { 'command': 'xen-set-replication',
1068 'data': { 'enable': 'bool', 'primary': 'bool', '*failover' : 'bool' } }
1071 # @ReplicationStatus:
1073 # The result format for 'query-xen-replication-status'.
1075 # @error: true if an error happened, false if replication is normal.
1077 # @desc: the human readable error description string, when
1082 { 'struct': 'ReplicationStatus',
1083 'data': { 'error': 'bool', '*desc': 'str' } }
1086 # @query-xen-replication-status:
1088 # Query replication status while the vm is running.
1090 # Returns: A @ReplicationResult object showing the status.
1094 # -> { "execute": "query-xen-replication-status" }
1095 # <- { "return": { "error": false } }
1099 { 'command': 'query-xen-replication-status',
1100 'returns': 'ReplicationStatus' }
1103 # @xen-colo-do-checkpoint:
1105 # Xen uses this command to notify replication to trigger a checkpoint.
1111 # -> { "execute": "xen-colo-do-checkpoint" }
1112 # <- { "return": {} }
1116 { 'command': 'xen-colo-do-checkpoint' }