From: "Richard W.M. Jones" <rjones@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] Should 'qemu-img commit' sparsify the backing file?
Date: Wed, 4 Nov 2015 16:37:30 +0000 [thread overview]
Message-ID: <20151104163730.GB28428@redhat.com> (raw)
This doesn't work (I tested both qemu 2.3 and qemu from git). Should it?
(1) Create a non-sparse guest image:
$ virt-builder fedora-22
$ mv fedora-22.img fedora-22.img.sparse
$ cp --sparse=never fedora-22.img.sparse fedora-22.img
$ du -sh fedora-22.img
6.1G fedora-22.img
(2) Add a snapshot on top:
$ qemu-img create -f qcow2 -o compat=1.1 -b fedora-22.img overlay.qcow2
$ du -sh fedora-22.img overlay.qcow2
6.1G fedora-22.img
196K overlay.qcow2
(3) Sparsify the overlay:
$ virt-sparsify --in-place overlay.qcow2
$ du -sh fedora-22.img overlay.qcow2
6.1G fedora-22.img
3.2M overlay.qcow2
(4) Commit to the backing file:
$ qemu-img commit overlay.qcow2
Image committed.
$ du -sh fedora-22.img overlay.qcow2
6.1G fedora-22.img <------
260K overlay.qcow2
Notice that the backing file (fedora-22.img) doesn't get any smaller.
I'm expecting the backing file to shrink to around 800 MB, which is
does if you run virt-sparsify directly on the backing file.
For background, `virt-sparsify --in-place' mounts each filesystem
(using a small Linux/qemu appliance), and runs fstrim on each one.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedoraproject.org/wiki/MinGW
next reply other threads:[~2015-11-04 16:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-04 16:37 Richard W.M. Jones [this message]
2015-11-05 7:14 ` [Qemu-devel] Should 'qemu-img commit' sparsify the backing file? Fam Zheng
2015-11-05 8:56 ` Richard W.M. Jones
2015-11-05 9:46 ` Fam Zheng
2015-11-05 12:18 ` Richard W.M. Jones
2015-11-09 16:03 ` Kevin Wolf
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=20151104163730.GB28428@redhat.com \
--to=rjones@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).