|
|
|
|
|
by 0xbadcafebee
1399 days ago
|
|
Container file I/O is very slow. It unpacks the OCI image layers onto the regular host filesystem, then adds overlay filesystems, does copy-on-write, and references files between each layer. For example, doing 10 containerized nodejs app builds simultaneously will swamp the host with iowait. A common hack to is to put the OCI file tree / overlays on a dedicated disk with much higher iops than the boot disk. |
|
That's just Docker though, right? Does LXC or systemd-nspawn do that?