qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: Lei Li <lilei@linux.vnet.ibm.com>, qemu-devel@nongnu.org
Cc: lagarcia@br.ibm.com, Paolo Bonzini <pbonzini@redhat.com>,
	Andrea Arcangeli <aarcange@redhat.com>,
	quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH 0/7 RFC] Localhost live migration
Date: Sun, 16 Jun 2013 11:01:15 -0500	[thread overview]
Message-ID: <87hagyhwok.fsf@codemonkey.ws> (raw)
In-Reply-To: <1371397053-4503-1-git-send-email-lilei@linux.vnet.ibm.com>

Lei Li <lilei@linux.vnet.ibm.com> writes:

> Hi,
>
> This patch series tries to add localhost live migration support
> to Qemu. It is just a draft version which is far from completing
> and I am still working on, send it out to have your suggestions
> and make sure it is the way should be headed. Your comments are
> very appreciated!

Thanks for posting Lei!

For the benefit of the other reviewers, the goal here is to allow "live
upgrade" of a running QEMU instance.  The work flow would look like
this:

1) Guests are running QEMU release 1.6.1
2) Admin installs QEMU release 1.6.2 via RPM or deb
3) Admin does localhost migration with page flipping to use new version
   of QEMU.

Page flipping is used in order to avoid requiring that there is enough
free memory to fit an additional copy of the largest guest which is the
requirement today with localhost migration.

> When doing localhost live migration, the host memory will balloon
> up during the period, might consume double memories for some time.
> So we want to add a new live migration mechanism localhost live 
> migration.
>
> The plan is:
>
> 1) Add new command to do localhost migration.
>
>    The qmp interface introduced like:
>
>    { 'command': 'localhost-migrate', 'data': {'uri': 'str'} }
>
> 2) Use different mechanism than current live migration.
>
>    The very basic work flow like:
>
>        qemu on the source (the source and destination are both on localhost)
>               |
>               V
>            Stop VM
>               |
>               V   
>           Create threads
>               |
>               V
>        Page flipping through vmspice
>               |
>               V
>        MADV_DONTNEED the ram pages which are already flipped

vmsplice() is a weird system call.

You would think that SPLICE_F_GIFT would imply MADV_DONTNEED but it
doesn't appear today.  So to start with, we're doing it explicitly.

We're planning on also looking at the kernel side of this as today the
combination of vmsplice() to a pipe plus vmsplice() from a pipe() will
not actually flip the page but instead copy it.  But I think this is a
fixable problem.

It would also be handy to flip large pages when THP is active but that's
future work.

Regards,

Anthony Liguori

>               |
>               V
>        Migration completes
>
>    As stopping VM first, we expect/resume the page flipping through vmspice
>    is fast enough to meet *live migration (low downtime).
>
> Notes:
> Currently the work flow is not exactly the same as description
> above. For the first step, the work flow we plan to implement is:
> stop VM and copy ram pages via unix domain socket, MADV_DONTNEED 
> ram pages that already copied. After that, will replace to vmsplice
> mechanism instead of copying pages.
>
> TODO:
> - Working on the completing of ram copy and MADV_DONTNEED part.
> - Introduce a mechanism to exchange a PIPE via SCM_RIGHTS.
> - benchmark/evaluation.
>
> Lei Li (7):
>   migration: export MIG_STATE_xxx flags
>   savevm: export qemu_save_device_state()
>   arch_init: add ram_madvise_free()
>   migration-local: implementation of outgoing part
>   migration-local: impelementation of incoming part
>   migration-local: add option to command line for local incoming
>   hmp:add hmp_localhost_migration interface
>
>
>  Makefile.objs                 |    1 +
>  arch_init.c                   |   13 ++++
>  hmp-commands.hx               |   17 +++++
>  hmp.c                         |   13 ++++
>  hmp.h                         |    1 +
>  include/migration/migration.h |   32 +++++++++
>  include/sysemu/sysemu.h       |    1 +
>  migration-local.c             |  155 +++++++++++++++++++++++++++++++++++++++++
>  migration-unix.c              |   60 ++++++++++++++++
>  migration.c                   |    8 --
>  qapi-schema.json              |   14 ++++
>  qemu-options.hx               |    9 +++
>  qmp-commands.hx               |   22 ++++++
>  savevm.c                      |    2 +-
>  vl.c                          |   14 ++++
>  15 files changed, 353 insertions(+), 9 deletions(-)
>  create mode 100644 migration-local.c

  parent reply	other threads:[~2013-06-16 16:01 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-16 15:37 [Qemu-devel] [PATCH 0/7 RFC] Localhost live migration Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 1/7] migration: export MIG_STATE_xxx flags Lei Li
2013-06-16 16:01   ` Anthony Liguori
2013-06-18  6:03     ` Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 2/7] savevm: export qemu_save_device_state() Lei Li
2013-06-16 16:02   ` Anthony Liguori
2013-06-18  6:05     ` Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 3/7] arch_init: add ram_madvise_free() Lei Li
2013-06-16 16:04   ` Anthony Liguori
2013-06-18  6:11     ` Lei Li
2013-08-02 19:34     ` Michael R. Hines
2013-06-16 15:37 ` [Qemu-devel] [PATCH 4/7] migration-local: implementation of outgoing part Lei Li
2013-06-16 16:07   ` Anthony Liguori
2013-06-18  6:25     ` Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 5/7] migration-local: implementation of incoming part Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 6/7] migration-local: add option to command line for -incoming-local Lei Li
2013-06-16 15:37 ` [Qemu-devel] [PATCH 7/7] hmp: add hmp_localhost_migration interface Lei Li
2013-06-16 16:01 ` Anthony Liguori [this message]
2013-06-18  6:02   ` [Qemu-devel] [PATCH 0/7 RFC] Localhost live migration Lei Li
2013-06-17 12:57 ` Stefan Hajnoczi
2013-06-18  6:01   ` Lei Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87hagyhwok.fsf@codemonkey.ws \
    --to=aliguori@us.ibm.com \
    --cc=aarcange@redhat.com \
    --cc=lagarcia@br.ibm.com \
    --cc=lilei@linux.vnet.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).