Re: [Qemu-devel] [PATCH 0/2] buffer and delay backup COW write operation

2019-05-06 Thread Vladimir Sementsov-Ogievskiy
06.05.2019 7:24, Liang Li wrote: > On Tue, Apr 30, 2019 at 10:35:32AM +, Vladimir Sementsov-Ogievskiy wrote: >> 28.04.2019 13:01, Liang Li wrote: >>> If the backup target is a slow device like ceph rbd, the backup >>> process will affect guest BLK write IO performance seriously, >>> it's cause

Re: [Qemu-devel] [PATCH 0/2] buffer and delay backup COW write operation

2019-05-05 Thread Liang Li
On Tue, Apr 30, 2019 at 10:35:32AM +, Vladimir Sementsov-Ogievskiy wrote: > 28.04.2019 13:01, Liang Li wrote: > > If the backup target is a slow device like ceph rbd, the backup > > process will affect guest BLK write IO performance seriously, > > it's cause by the drawback of COW mechanism,

Re: [Qemu-devel] [PATCH 0/2] buffer and delay backup COW write operation

2019-04-30 Thread Vladimir Sementsov-Ogievskiy
28.04.2019 13:01, Liang Li wrote: > If the backup target is a slow device like ceph rbd, the backup > process will affect guest BLK write IO performance seriously, > it's cause by the drawback of COW mechanism, if guest overwrite the > backup BLK area, the IO can only be processed after the data

[Qemu-devel] [PATCH 0/2] buffer and delay backup COW write operation

2019-04-28 Thread Liang Li
If the backup target is a slow device like ceph rbd, the backup process will affect guest BLK write IO performance seriously, it's cause by the drawback of COW mechanism, if guest overwrite the backup BLK area, the IO can only be processed after the data has been written to backup target. The