From: "Denis V. Lunev" <den@odin.com>
To: John Snow <jsnow@redhat.com>, dgilbert@redhat.com
Cc: kwolf@redhat.com, peter.maydell@linaro.org, quintela@redhat.com,
qemu-devel@nongnu.org,
Vladimir Sementsov-Ogievskiy <vsementsov@parallels.com>,
stefanha@redhat.com, amit.shah@redhat.com, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v5 00/12] Dirty bitmaps migration
Date: Thu, 28 May 2015 23:56:08 +0300 [thread overview]
Message-ID: <556780E8.6000700@odin.com> (raw)
In-Reply-To: <55677603.8040506@redhat.com>
On 28/05/15 23:09, John Snow wrote:
>
> On 05/26/2015 10:51 AM, Denis V. Lunev wrote:
>> On 26/05/15 17:48, Denis V. Lunev wrote:
>>> On 21/05/15 19:44, John Snow wrote:
>>>> On 05/21/2015 09:57 AM, Denis V. Lunev wrote:
>>>>> On 21/05/15 16:51, Vladimir Sementsov-Ogievskiy wrote:
>>>>>> Hi all.
>>>>>>
>>>>>> Hmm. There is an interesting suggestion from Denis Lunev (in CC) about
>>>>>> how to drop meta bitmaps and make things easer.
>>>>>>
>>>>>> method:
>>>>>>
>>>>>>> start migration
>>>>>> disk and memory are migrated, but not dirty bitmaps.
>>>>>>> stop vm
>>>>>> create all necessary bitmaps in destination vm (empty, but with same
>>>>>> names and granularities and enabled flag)
>>>>>>> start destination vm
>>>>>> empty bitmaps are tracking now
>>>>>>> start migrating dirty bitmaps. merge them to corresponding bitmaps
>>>>>> in destination
>>>>>> while bitmaps are migrating, they should be in some kind of
>>>>>> 'inconsistent' state.
>>>>>> so, we can't start backup or other migration while bitmaps are
>>>>>> migrating, but vm is already _running_ on destination.
>>>>>>
>>>>>> what do you think about it?
>>>>>>
>>>>> the description is a bit incorrect
>>>>>
>>>>> - start migration process, perform memory and disk migration
>>>>> as usual. VM is still executed at source
>>>>> - start VM on target. VM on source should be on pause as usual,
>>>>> do not finish migration process. Running VM on target "writes"
>>>>> normally setting dirty bits as usual
>>>>> - copy active dirty bitmaps from source to target. This is safe
>>>>> as VM on source is not running
>>>>> - "OR" copied bitmaps with ones running on target
>>>>> - finish migration process (stop source VM).
>>>>>
>>>>> Downtime will not be increased due to dirty bitmaps with this
>>>>> approach, migration process is very simple - plain data copy.
>>>>>
>>>>> Regards,
>>>>> Den
>>>>>
>>>> I was actually just discussing the live migration approach a little bit
>>>> ago with Stefan, trying to decide on the "right" packet format (The only
>>>> two patches I haven't ACKed yet are ones in which we need to choose a
>>>> send size) and we decided that 1KiB chunk sends would be appropriate for
>>>> live migration.
>>>>
>>>> I think I'm okay with that method, but obviously this approach outlined
>>>> here would also work very well and would avoid meta bitmaps, chunk
>>>> sizes, migration tuning, convergence questions, etc etc etc.
>>>>
>>>> You'd need to add a new status to the bitmap on the target (maybe
>>>> "INCOMPLETE" or "MIGRATING") that prevents it from being used for a
>>>> backup operation without preventing it from recording new writes.
>>>>
>>>> My only concern is how easy it will be to work this into the migration
>>>> workflow.
>>>>
>>>> It would require some sort of "post-migration" ternary phase, I suppose,
>>>> for devices/data that can be transferred after the VM starts -- and I
>>>> suspect we'll be the only use of that phase for now.
>>>>
>>>> David, what are your thoughts, here? Would you prefer Vladimir and I
>>>> push forward on the live migration approach, or add a new post-hoc
>>>> phase? This approach might be simpler on the block layer, but I would be
>>>> rather upset if he scrapped his entire series for the second time for
>>>> another approach that also didn't get accepted.
>>>>
>>>> --js
>>> hmmm.... It looks like we should proceed with this to fit 2.4 dates.
>>> There is not much interest at the moment. I think that we could
>>> implement this later in 2.5 etc...
>>>
>>> Regards,
>>> Den
>> oops. I have written something strange. Anyway, I think that for
>> now we should proceed with this patchset to fit QEMU 2.4 dates.
>> The implementation with additional stage (my proposal) could be
>> added later, f.e. in 2.5 as I do not see much interest from migration
>> gurus.
>>
>> In this case the review will take a ... lot of time.
>>
>> Regards,
>> Den
>>
> That sounds good to me. I think this solution is workable for 2.4, and
> we can begin working on a post-migration phase for the future to help
> simplify our cases a lot.
>
> I have been out sick much of this week, so apologies in my lack of
> fervor getting this series upstream recently.
>
> --js
no prob :)
next prev parent reply other threads:[~2015-05-28 20:56 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-13 15:29 [Qemu-devel] [PATCH v5 00/12] Dirty bitmaps migration Vladimir Sementsov-Ogievskiy
2015-05-13 15:29 ` [Qemu-devel] [PATCH 01/12] hbitmap: serialization Vladimir Sementsov-Ogievskiy
2015-05-13 15:29 ` [Qemu-devel] [PATCH 02/12] block: BdrvDirtyBitmap serialization interface Vladimir Sementsov-Ogievskiy
2015-05-13 15:29 ` [Qemu-devel] [PATCH 03/12] block: tiny refactoring: minimize hbitmap_(set/reset) usage Vladimir Sementsov-Ogievskiy
2015-05-13 15:29 ` [Qemu-devel] [PATCH 04/12] block: add meta bitmaps Vladimir Sementsov-Ogievskiy
2015-05-28 22:13 ` John Snow
2015-05-13 15:30 ` [Qemu-devel] [PATCH 05/12] block: add bdrv_next_dirty_bitmap() Vladimir Sementsov-Ogievskiy
2015-05-13 15:30 ` [Qemu-devel] [PATCH 06/12] qapi: add dirty-bitmaps migration capability Vladimir Sementsov-Ogievskiy
2015-05-13 15:30 ` [Qemu-devel] [PATCH 07/12] migration: add migration/block-dirty-bitmap.c Vladimir Sementsov-Ogievskiy
2015-06-02 21:56 ` John Snow
2015-05-13 15:30 ` [Qemu-devel] [PATCH 08/12] iotests: maintain several vms in test Vladimir Sementsov-Ogievskiy
2015-05-13 15:30 ` [Qemu-devel] [PATCH 09/12] iotests: add add_incoming_migration to VM class Vladimir Sementsov-Ogievskiy
2015-05-13 15:30 ` [Qemu-devel] [PATCH 10/12] qapi: add md5 checksum of last dirty bitmap level to query-block Vladimir Sementsov-Ogievskiy
2015-05-13 15:30 ` [Qemu-devel] [PATCH 11/12] iotests: add dirty bitmap migration test Vladimir Sementsov-Ogievskiy
2015-06-02 22:07 ` John Snow
2015-05-13 15:30 ` [Qemu-devel] [PATCH 12/12] migration/qemu-file: make functions qemu_(get/put)_string public Vladimir Sementsov-Ogievskiy
2015-05-21 13:51 ` [Qemu-devel] [PATCH v5 00/12] Dirty bitmaps migration Vladimir Sementsov-Ogievskiy
2015-05-21 13:57 ` Denis V. Lunev
2015-05-21 16:44 ` John Snow
2015-05-26 14:48 ` Denis V. Lunev
2015-05-26 14:51 ` Denis V. Lunev
2015-05-28 20:09 ` John Snow
2015-05-28 20:56 ` Denis V. Lunev [this message]
2015-06-02 22:17 ` John Snow
2015-06-05 10:51 ` Denis V. Lunev
2016-01-26 8:45 ` Vladimir Sementsov-Ogievskiy
2016-01-26 22:57 ` John Snow
2016-01-27 1:17 ` Fam Zheng
2015-06-02 22:12 ` John Snow
2015-06-03 9:10 ` Vladimir Sementsov-Ogievskiy
2015-06-12 22:16 ` John Snow
2015-06-19 16:57 ` Denis V. Lunev
2015-06-19 17:38 ` John Snow
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=556780E8.6000700@odin.com \
--to=den@odin.com \
--cc=amit.shah@redhat.com \
--cc=dgilbert@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=stefanha@redhat.com \
--cc=vsementsov@parallels.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).