-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Today we use raw-sparse images. This has some drawbacks:
- It does not support file systems that don't have sparse support. It fills the whole file system, needlessly.
- It requires us to XZ the images and ship them as XZ.
qcow2 with compression:
- The image take 531MB (vs. 1.2GB of the raw-sparse)
- The XZ compressed qcow2 +compression takes 513MB (so there's little point in re-compressing it).
- The XZ compressed qcow2 takes 373MB (so should we convert to a compressed qcow2 on the client?)
- The XZ compressed raw-sparse takes 374MB (so should we do the conversion from raw-sparse to qcow2+ compression on the client?)
- Most importantly, at least on my laptop (SSD storage), I could not see any difference in performance (running ovirt-system-tests on top of a compressed qcow2 used as base image)
- On my host, it took 50s to convert from raw-sparse to qcow2+compression
Note: compression does not support metadata preallocation.qemu
Reactions are currently unavailable