We replaced Firecracker with QEMU
hocus.dev
We replaced Firecracker with QEMU
1–10 of 156 posts
Re: We replaced Firecracker with QEMU
#2Re: We replaced Firecracker with QEMU
#3Re: We replaced Firecracker with QEMU
#4For example, if I'm running 5 VM's, there is a good chance that many of the pages are identical. Not only do I want those pages to be deduplicated, but I want them to be zero-copy (ie. not deduplicated after-the-fact by some daemon).
To do that, the guest block cache needs to be integrated with the host block-cache, so that whenever some guest application tries to map data from disk, the host notices that another virtual machine has already caused this data to be loaded, so we can just map the same page of already loaded data into the VM that is asking.
Re: We replaced Firecracker with QEMU
#5This just works on Hyper-V Linux guests btw. For all the crap MS gets they do some things very right.
Re: We replaced Firecracker with QEMU
#6Fly uses Firecracker, and they host long-running processes. I wonder what's their opinion about it.
Re: We replaced Firecracker with QEMU
#7I really want VM's to integrate 'smarter' with the host. For example, if I'm running 5 VM's, there is a good chance that many of the pages are identical. Not only do I want those pages to be deduplicated, but I want them to be zero-copy (ie. not deduplicated after-the-fact by some daemon). To do that, the guest block cache needs to be integrated with the host block-cache, so that whenever some guest application tries…
Re: We replaced Firecracker with QEMU
#8I really want VM's to integrate 'smarter' with the host. For example, if I'm running 5 VM's, there is a good chance that many of the pages are identical. Not only do I want those pages to be deduplicated, but I want them to be zero-copy (ie. not deduplicated after-the-fact by some daemon). To do that, the guest block cache needs to be integrated with the host block-cache, so that whenever some guest application tries…
Re: We replaced Firecracker with QEMU
#9I really want VM's to integrate 'smarter' with the host. For example, if I'm running 5 VM's, there is a good chance that many of the pages are identical. Not only do I want those pages to be deduplicated, but I want them to be zero-copy (ie. not deduplicated after-the-fact by some daemon). To do that, the guest block cache needs to be integrated with the host block-cache, so that whenever some guest application tries…