How's the disk performance ? #389
Replies: 2 comments 5 replies
-
|
The performance between Containerization and Lima should be similar, since they are both using Virtualization. Starting a MicroVM takes around 10x longer than a container, but it is around 100x faster than a VM. But YMMV. |
Beta Was this translation helpful? Give feedback.
-
The "bind mounts" (which aren't bind mounts in the Linux sense) are virtiofs mounts. As @afbjorklund implies, those will pretty much identically to the same mounts in Lima/Colima or any other tool using Virtualization.framework. The named volumes that were added in #362 provide better performance than virtiofs shares from the host, but work slightly differently than those in Docker and others where you can just Linux bind mount from the common VM into the containers. Instead, a named volume is a sparse block file with an ext4 image that mounts into the container. What this implies is that you can either RW mount the volume in exactly one container, or RO mount the volume into multiple containers. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Thank you for this project. It appears that containerization is the crucial component missing to transform the Macs into viable servers.
Here are a few points:
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions