Hi, I've been thinking about the issue but I'm not sure I've come to a resolution you'll like much. I'm not really in favor of optimizing code for ZFS, especially if that means worse code for every other case. I think it very much makes sense to assume that lseek(SEEK_{DATA,HOLE}) is faster than writing data to disk, and actually so much faster that it even pays off if you sometimes to the lseek() only to find out that you actually have to write data still. Therefore, the patch as it is makes sense. The fact that said lseek() is slow on ZFS is (in my humble opinion) the ZFS driver's problem that needs to be fixed there. If ZFS has a good alternative for us to check whether a given area of a file will return zeroes when read, I'm all ears and it might be a good idea to use it. That is, if someone can write the code for it because I'd rather not if that requires ZFS headers and a ZFS for testing. (Determining whether a file has a hole in it and where it is has actually plagued as for a while now. lseek() seemed to be the most widespread way with the least amount of pitfalls to do it.) OTOH, it may make sense to offer a way for the user to disable lseek(SEEK_{DATA,HOLE}) in our "file" block driver. That way your issue would be solved, too, I guess. I'll look into it. Max On 02.02.2017 13:30, Stephane Chazelas wrote: > Hello, > > since qemu-2.7.0, doing synchronised I/O in a VM (tested with > Ubuntu 16.04 amd64 VM) while the disk is backed by a qcow2 > file sitting on a ZFS filesystem (zfs on Linux on Debian jessie > (PVE)), the performances are dreadful: > > # time dd if=/dev/zero count=1000 of=b oflag=dsync > 1000+0 records in > 1000+0 records out > 512000 bytes (512 kB, 500 KiB) copied, 21.9908 s, 23.3 kB/s > dd if=/dev/zero count=1000 of=b oflag=dsync 0.00s user 0.04s system 0% cpu 21.992 total > > (22 seconds to write that half megabyte). Same with O_SYNC or > O_DIRECT, or doing fsync() or sync_file_range() after each > write(). > > I first noticed it for dpkg unpacking kernel headers where dpkg > does a sync_file_range() after each file is extracted. > > Note that it doesn't happen when writing anything else than > zeroes (like tr '\0' x < /dev/zero | dd count=1000 of=b > oflag=dsync). In the case of the kernel headers, I suppose the > zeroes come from the non-filled parts of the ext4 blocks. > > Doing strace -fc on the qemu process, 98% of the time is spent > in the lseek() system call. > > That's the lseek(SEEK_DATA) followed by lseek(SEEK_HOLE) done by > find_allocation() called to find out whether sectors are within > a hole in a sparse file. > > #0 lseek64 () at ../sysdeps/unix/syscall-template.S:81 > #1 0x0000561287cf4ca8 in find_allocation (bs=0x7fd898d70000, hole=, data=, start=) > at block/raw-posix.c:1702 > #2 raw_co_get_block_status (bs=0x7fd898d70000, sector_num=, nb_sectors=40, pnum=0x7fd80dd05aac, file=0x7fd80dd05ab0) at block/raw-posix.c:1765 > #3 0x0000561287cfae92 in bdrv_co_get_block_status (bs=0x7fd898d70000, sector_num=sector_num@entry=1303680, nb_sectors=40, pnum=pnum@entry=0x7fd80dd05aac, > file=file@entry=0x7fd80dd05ab0) at block/io.c:1709 > #4 0x0000561287cfafaa in bdrv_co_get_block_status (bs=bs@entry=0x7fd898d66000, sector_num=sector_num@entry=33974144, nb_sectors=, > nb_sectors@entry=40, pnum=pnum@entry=0x7fd80dd05bbc, file=file@entry=0x7fd80dd05bc0) at block/io.c:1742 > #5 0x0000561287cfb0bb in bdrv_co_get_block_status_above (file=0x7fd80dd05bc0, pnum=0x7fd80dd05bbc, nb_sectors=40, sector_num=33974144, base=0x0, > bs=) at block/io.c:1776 > #6 bdrv_get_block_status_above_co_entry (opaque=opaque@entry=0x7fd80dd05b40) at block/io.c:1792 > #7 0x0000561287cfae08 in bdrv_get_block_status_above (bs=0x7fd898d66000, base=base@entry=0x0, sector_num=, nb_sectors=nb_sectors@entry=40, > pnum=pnum@entry=0x7fd80dd05bbc, file=file@entry=0x7fd80dd05bc0) at block/io.c:1824 > #8 0x0000561287cd372d in is_zero_sectors (bs=, start=, count=40) at block/qcow2.c:2428 > #9 0x0000561287cd38ed in is_zero_sectors (count=, start=, bs=) at block/qcow2.c:2471 > #10 qcow2_co_pwrite_zeroes (bs=0x7fd898d66000, offset=33974144, count=24576, flags=2724114573) at block/qcow2.c:2452 > #11 0x0000561287cfcb7f in bdrv_co_do_pwrite_zeroes (bs=bs@entry=0x7fd898d66000, offset=offset@entry=17394782208, count=count@entry=4096, > flags=flags@entry=BDRV_REQ_ZERO_WRITE) at block/io.c:1218 > #12 0x0000561287cfd0cb in bdrv_aligned_pwritev (bs=0x7fd898d66000, req=, offset=17394782208, bytes=4096, align=1, qiov=0x0, > flags=) at block/io.c:1320 > #13 0x0000561287cfe450 in bdrv_co_do_zero_pwritev (req=, flags=, bytes=, offset=, > bs=) at block/io.c:1422 > #14 bdrv_co_pwritev (child=0x15, offset=17394782208, bytes=4096, qiov=0x7fd8a25eb08d , qiov@entry=0x0, flags=231758512) at block/io.c:1492 > #15 0x0000561287cefdc7 in blk_co_pwritev (blk=0x7fd898cad540, offset=17394782208, bytes=4096, qiov=0x0, flags=) at block/block-backend.c:788 > #16 0x0000561287cefeeb in blk_aio_write_entry (opaque=0x7fd812941440) at block/block-backend.c:982 > #17 0x0000561287d67c7a in coroutine_trampoline (i0=, i1=) at util/coroutine-ucontext.c:78 > > Now, performance is really bad on ZFS for those lseek(). > I believe that's https://github.com/zfsonlinux/zfs/issues/4306 > > Until that's fixed in ZFS, I need to find a way to avoid those > lseek()s in the first place. > > One way is to downgrade to 2.6.2 where those lseek()s are not > called. The change that introduced them seems to be: > > https://github.com/qemu/qemu/commit/2928abce6d1d426d37c0a9bd5f85fb95cf33f709 > (and there have been further changes to improve it later). > > If I understand correctly, that change was about preventing data > from being allocated when the user is writing unaligned zeroes. > > I suppose the idea is that if something is trying to write > zeroes in the middle of an _allocated_ qcow2 cluster, but the > corresponding sectors in the file underneath are in a hole, we > don't want to write those zeros as that would allocate the data > at the file level. > > I can see it makes sense, but in my case, the little space > efficiency it brings is largely overshadowed by the sharp > decrease in performance. > > For now, I work around it by changing the "#ifdef SEEK_DATA" > to "#if 0" in find_allocation(). > > Note that passing detect-zeroes=off or detect-zeroes=unmap (with > discard) doesn't help (even though FALLOC_FL_PUNCH_HOLE is > supported on ZFS on Linux). > > Is there any other way I could use to prevent those lseek()s > without having to rebuild qemu? > > Would you consider adding an option to disable that behaviour > (skip checking allocation at file level for qcow2 image)? > > Thanks, > Stephane > > >