-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make-disk-image: add compressed option to compress qcow2 images #31535
Conversation
f57860e
to
a0c56d1
Compare
You probably think about installation media images (.iso). Virtual machine images (.qcow2, .ami) are meant to be mutable, this is why they contain uncompressed /nix/store. (In fact virtualization software often keeps the original image unmodified by storing writes performed by the guest operating system in a separate file, while all that a guest sees is a single writable disk. In this case it is perfect to keep the read only disk in the form that is compressed and supports fast random read access, and qcow2 compression provides exactly this.) |
Sure, I've noticed that which is why I've deleted the comment. Didn't know about storing writes separately, interesting, makes sense to deduplicate this given instances are meant to be ephemeral and usually don't get heavy updates.
At least Amazon doesn't support qcow2 at all: their import tool supports raw and vpc, though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apart from the enum shape, this looks great, thanks! I'm not necessarily treating it as a blocker but would prefer to have the 4-element enum to the boolean.
nixos/lib/make-disk-image.nix
Outdated
@@ -45,7 +49,9 @@ let | |||
raw = "img"; | |||
}; | |||
|
|||
nixpkgs = lib.cleanSource pkgs.path; | |||
compress = optionalString compressed (assert format == "qcow2"; "-c"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than putting an assert here, maybe we could just make format
be one of vpc
, qcow2
, qcow2-compressed
, and raw
? From a types perspective it feels cleaner to have a 4-element enum than a boolean paired with a 3-element enum where 2 of the choices are invalid.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes the naming difficult: we shouldn't rename format
parameter as it is a part of the API, and there is no better name for the actual format as understood by qemu-img
. Is this better: 27f5cc9?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An alternative solution is to rename compressed
into qcow2-compressed
:
- compress = optionalString compressed (assert format == "qcow2"; "-c");
+ compress = optionalString (format == "qcow2" && qcow2-compressed) "-c";
(This facilitates making qcow2 be compressed by default, although I'm not sure if that is useful.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I quite like the qcow2-compressed
version myself. Thanks!
a0c56d1
to
ab53443
Compare
ab53443
to
27f5cc9
Compare
This is |
Sorry for not testing the final version thoroughly enough. Fixed in 470a775. |
Now Hydra's repeatedly getting |
Motivation for this change
Compressed images take less space (about 3 times less), are faster to upload and to download to provision new instances. I'm interested in using this with qemu and OpenStack. I'm not going to test if compressed images are supported by Amazon or other cloud providers.
The commits are easier to review separately.
Things done
build-use-sandbox
innix.conf
on non-NixOS)compressed
defaulted totrue
nix-shell -p nox --run "nox-review wip"
./result/bin/
)