From: Peter Xu <peterx@redhat.com>
To: Zhang Chen <zhangckid@gmail.com>
Cc: "Zhijian Li (Fujitsu)" <lizhijian@fujitsu.com>,
"zhanghailiang@xfusion.com" <zhanghailiang@xfusion.com>,
"farosas@suse.de" <farosas@suse.de>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
Lukas Straub <lukasstraub2@web.de>,
Jason Wang <jasowang@redhat.com>
Subject: Re: [PATCH] migration: Fix transition to COLO state from precopy
Date: Thu, 6 Nov 2025 17:07:46 -0500 [thread overview]
Message-ID: <aQ0cMhod-MC0gGL0@x1.local> (raw)
In-Reply-To: <CAK3tnvK2h4gDYZn_P-mQPhM5qvSkPy2FJ_EzKqyMU9ZcyT8TTA@mail.gmail.com>
On Thu, Nov 06, 2025 at 11:21:56AM +0800, Zhang Chen wrote:
> On Thu, Nov 6, 2025 at 9:10 AM Zhijian Li (Fujitsu)
> <lizhijian@fujitsu.com> wrote:
> >
> >
> >
> > On 06/11/2025 04:58, Peter Xu wrote:
> > > On Tue, Nov 04, 2025 at 09:36:06AM +0800, Li Zhijian wrote:
> > >> Commit 4881411136 ("migration: Always set DEVICE state") set a new DEVICE
> > >> state before completed during migration, which broke the original transition
> > >> to COLO. The migration flow for precopy has changed to:
> > >> active -> pre-switchover -> device -> completed.
> > >>
> > >> This patch updates the transition state to ensure that the Pre-COLO
> > >> state corresponds to DEVICE state correctly.
> > >>
> > >> Fixes: 4881411136 ("migration: Always set DEVICE state")
> > >> Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
> > >> ---
> > >> migration/migration.c | 4 ++--
> > >> 1 file changed, 2 insertions(+), 2 deletions(-)
> > >>
> > >> diff --git a/migration/migration.c b/migration/migration.c
> > >> index a63b46bbef..6ec7f3cec8 100644
> > >> --- a/migration/migration.c
> > >> +++ b/migration/migration.c
> > >> @@ -3095,9 +3095,9 @@ static void migration_completion(MigrationState *s)
> > >> goto fail;
> > >> }
> > >>
> > >> - if (migrate_colo() && s->state == MIGRATION_STATUS_ACTIVE) {
> > >> + if (migrate_colo() && s->state == MIGRATION_STATUS_DEVICE) {
> > >> /* COLO does not support postcopy */
> > >> - migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
> > >> + migrate_set_state(&s->state, MIGRATION_STATUS_DEVICE,
> > >> MIGRATION_STATUS_COLO);
> > >> } else {
> > >> migration_completion_end(s);
> > >
> > > Thanks a lot for fixing it, Zhijian. It means I broke COLO already for
> > > 10.0/10.1..
> > >
> > > Hailiang/Chen, do you still know anyone who is using COLO, especially in
> > > enterprise? I don't expect any individual using it.. It definitely
> > > complicates migration logics all over the places. Fabiano and I discussed
> > > a few times on removing legacy code and COLO was always in the list.
> > >
> > > We used to discuss RDMA obsoletion too, that's when Huawei developers at
> > > least tried to re-implement the whole RDMA using rsocket, that didn't land
> > > only because of a perf regression. Meanwhile, Zhijian also provided an
> > > unit test, which we rely on recently to not break RDMA at the minimum.
> > >
> > > If we do not have known users, I sincerely want to discuss with you on
> > > obsoletion and removal of COLO from qemu codebase. Do you see feasible?
> > >
> > > Zhijian, do you have any input here?
> >
> >
> > If we don't have any known users, I personally have no objection to removing COLO.
> >
> > From my previous understanding, its use cases are rather limited, and the checkpointing overhead is significant.
> > Moreover, with the continuous development of Cloud Native over the past decade, service-based
> > FT/HA solutions have become very mature, which shrinks the use cases for VM-based FT solutions even further.
> >
> > I think it's worth keeping if we have:
> >
> > - Active users who depend on it.
> > - A unit test for the COLO framework.
> >
> > Thanks
> > Zhijian
> >
> >
>
> Add CC Lukas.
>
> From technical point, I agree Zhijian's comments. We can probably do
> this gradually.
Thanks both for the inputs so far.
> In my side, I know some local companies build thier HA/FT product based on COLO.
> In this case, I think most of them already forked QEMU upstream code
> to a private repo for internal mantained.
> It may caused some upgrade issues in the future.
If this might be an issue to them, please share this discussion with them,
and see whether they want to get involved (if that may make their workflow
easier). In general, whoever still rebases to upstream (even if with low
freq) should always benefit from some involvement upstream to not get
things totally out of control in their production systems.
>
> And another part is Lukas covered pacemaker project integrated COLO,
> and I don't know users status for pacemaker.
> Maybe Lukas can input some comments?
>
> For the implementation, COLO not only have migration part of code(it
> is the core of COLO), it also including network and block replication
> for co-working.
> If we remove migration related code need to consider how to handle
> other parts, network maybe change to general QEMU netfilter? block
> replication ?
This is a great question. We can talk about that when an deprecation
decision will be made. IMHO you guys know better than me, so suggestions
will be welcomed.
From migration POV, we don't necessary need to remove anything outside
migration; removing COLO inside migration itself will be a great offload of
our maintenance burden on its own. But I still would definitely like to
sync with other subsystems if we decide that.. let me copy Jason already
just for awareness. I should have already done that but I forgot, sorry.
>
> For the COLO framework unit test, I think it need to add some "#if
> defined(qtest)" in migration code for testing(COLO proxy/netfilter
> already have independent qtest).
Another question to be answered only after we have an initial decision to
keep COLO in this case. So we can focus on answering the 1st question on
whether we should deprecate COLO.
Thanks,
--
Peter Xu
prev parent reply other threads:[~2025-11-06 22:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-04 1:36 [PATCH] migration: Fix transition to COLO state from precopy Li Zhijian via
2025-11-04 1:49 ` Zhijian Li (Fujitsu)
2025-11-04 2:40 ` Zhang Chen
2025-11-05 20:58 ` Peter Xu
2025-11-06 1:09 ` Zhijian Li (Fujitsu)
2025-11-06 3:21 ` Zhang Chen
2025-11-06 3:24 ` Zhang Chen
2025-11-06 22:07 ` Peter Xu [this message]
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=aQ0cMhod-MC0gGL0@x1.local \
--to=peterx@redhat.com \
--cc=farosas@suse.de \
--cc=jasowang@redhat.com \
--cc=lizhijian@fujitsu.com \
--cc=lukasstraub2@web.de \
--cc=qemu-devel@nongnu.org \
--cc=zhangckid@gmail.com \
--cc=zhanghailiang@xfusion.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).