All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hailiang Zhang <zhang.zhanghailiang@huawei.com>
To: qemu-devel@nongnu.org
Cc: amit.shah@redhat.com, quintela@redhat.com, dgilbert@redhat.com,
	wency@cn.fujitsu.com, lizhijian@cn.fujitsu.com,
	zhangchen.fnst@cn.fujitsu.com, xiecl.fnst@cn.fujitsu.com
Subject: Re: [Qemu-devel] [PATCH COLO-Frame v19 00/22] COarse-grain LOck-stepping(COLO) Virtual Machines for Non-stop Service (FT)
Date: Fri, 9 Sep 2016 14:45:36 +0800	[thread overview]
Message-ID: <57D25A90.90206@huawei.com> (raw)
In-Reply-To: <1472700265-16760-1-git-send-email-zhang.zhanghailiang@huawei.com>

ping ?

On 2016/9/1 11:24, zhanghailiang wrote:
> This is the 19th version of COLO frame series.
>
> According to the suggestion of Juan and Amit,
> I dropped parts of the optimization patches to make it easier for review.
>
> Besides, I discarded the network related patches since the development of
> COLO proxy goes well, It is very likely to be merged in QEMU 2.8,
> Please see [PATCH V12 02/10] colo-compare: introduce colo compare initialization
> for more information. The original network related patches in this series are
> to buffer the network packets till a checkpointing be successfully achieved,
> just like Remus does in XEN, but these patches will be reverted in COLO compare
> series. So here, it is unnecessary to add them.
>
> You can still test this series like before. Or refer to docs/COLO-FT.txt.
>
> It is based on 'Block replication' series which has been merged in Stefan's
> branch https://github.com/stefanha/qemu/commits/block-next.
>
> The complete codes can be found from the link:
> https://github.com/coloft/qemu/commits/colo-v4.1-periodic-mode
>
> Please review. Thanks ;)
>
> TODO:
> 1. Checkpoint based on proxy in qemu
> 2. The capability of continuous FT
> 3. Optimize the VM's downtime during checkpoint
>
> v19:
>   - Add documentation about COLO (patch 21)
>   - Dropped network related patches
>   - Fix parts of patches' title and comments
>
> zhanghailiang (22):
>    migration: Introduce capability 'x-colo' to migration
>    COLO: migrate COLO related info to secondary node
>    migration: Enter into COLO mode after migration if COLO is enabled
>    migration: Switch to COLO process after finishing loadvm
>    COLO: Establish a new communicating path for COLO
>    COLO: Introduce checkpointing protocol
>    COLO: Add a new RunState RUN_STATE_COLO
>    COLO: Send PVM state to secondary side when do checkpoint
>    COLO: Load VMState into QIOChannelBuffer before restore it
>    COLO: Add checkpoint-delay parameter for migrate-set-parameters
>    COLO: Synchronize PVM's state to SVM periodically
>    COLO: Add 'x-colo-lost-heartbeat' command to trigger failover
>    COLO: Introduce state to record failover process
>    COLO: Implement the process of failover for primary VM
>    COLO: Implement failover work for secondary VM
>    COLO: Shutdown related socket fd while do failover
>    COLO: Don't do failover while loading VM's state
>    COLO: Handle shutdown command for VM in COLO state
>    COLO: Update the global runstate after going into colo state
>    COLO: Add block replication into colo process
>    docs: Add documentation for COLO feature
>    configure: Support enable/disable COLO feature
>
>   configure                     |  11 +
>   docs/COLO-FT.txt              | 190 ++++++++++++
>   hmp-commands.hx               |  15 +
>   hmp.c                         |  15 +
>   hmp.h                         |   1 +
>   include/migration/colo.h      |  40 +++
>   include/migration/failover.h  |  33 ++
>   include/migration/migration.h |  11 +
>   include/sysemu/sysemu.h       |   3 +
>   migration/Makefile.objs       |   2 +
>   migration/colo-comm.c         |  72 +++++
>   migration/colo-failover.c     |  84 +++++
>   migration/colo.c              | 694 ++++++++++++++++++++++++++++++++++++++++++
>   migration/migration.c         |  86 +++++-
>   migration/ram.c               |  37 ++-
>   migration/trace-events        |   6 +
>   qapi-schema.json              |  88 +++++-
>   qmp-commands.hx               |  24 +-
>   stubs/Makefile.objs           |   1 +
>   stubs/migration-colo.c        |  51 ++++
>   vl.c                          |  30 +-
>   21 files changed, 1468 insertions(+), 26 deletions(-)
>   create mode 100644 docs/COLO-FT.txt
>   create mode 100644 include/migration/colo.h
>   create mode 100644 include/migration/failover.h
>   create mode 100644 migration/colo-comm.c
>   create mode 100644 migration/colo-failover.c
>   create mode 100644 migration/colo.c
>   create mode 100644 stubs/migration-colo.c
>

  parent reply	other threads:[~2016-09-09  6:46 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-01  3:24 [Qemu-devel] [PATCH COLO-Frame v19 00/22] COarse-grain LOck-stepping(COLO) Virtual Machines for Non-stop Service (FT) zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 01/22] migration: Introduce capability 'x-colo' to migration zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 02/22] COLO: migrate COLO related info to secondary node zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 03/22] migration: Enter into COLO mode after migration if COLO is enabled zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 04/22] migration: Switch to COLO process after finishing loadvm zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 05/22] COLO: Establish a new communicating path for COLO zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 06/22] COLO: Introduce checkpointing protocol zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 07/22] COLO: Add a new RunState RUN_STATE_COLO zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 08/22] COLO: Send PVM state to secondary side when do checkpoint zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 09/22] COLO: Load VMState into QIOChannelBuffer before restore it zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 10/22] COLO: Add checkpoint-delay parameter for migrate-set-parameters zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 11/22] COLO: Synchronize PVM's state to SVM periodically zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 12/22] COLO: Add 'x-colo-lost-heartbeat' command to trigger failover zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 13/22] COLO: Introduce state to record failover process zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 14/22] COLO: Implement the process of failover for primary VM zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 15/22] COLO: Implement failover work for secondary VM zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 16/22] COLO: Shutdown related socket fd while do failover zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 17/22] COLO: Don't do failover while loading VM's state zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 18/22] COLO: Handle shutdown command for VM in COLO state zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 19/22] COLO: Update the global runstate after going into colo state zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 20/22] COLO: Add block replication into colo process zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 21/22] docs: Add documentation for COLO feature zhanghailiang
2016-09-01  3:24 ` [Qemu-devel] [PATCH COLO-Frame v19 22/22] configure: Support enable/disable " zhanghailiang
2016-09-01  3:57 ` [Qemu-devel] [PATCH COLO-Frame v19 00/22] COarse-grain LOck-stepping(COLO) Virtual Machines for Non-stop Service (FT) no-reply
2016-09-09  6:45 ` Hailiang Zhang [this message]
2016-09-10  8:21   ` Amit Shah
2016-09-13  1:04     ` Hailiang Zhang

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=57D25A90.90206@huawei.com \
    --to=zhang.zhanghailiang@huawei.com \
    --cc=amit.shah@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=lizhijian@cn.fujitsu.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=wency@cn.fujitsu.com \
    --cc=xiecl.fnst@cn.fujitsu.com \
    --cc=zhangchen.fnst@cn.fujitsu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.