by helper on 3/22/19, 6:02 PM with 21 comments
by koolba on 3/22/19, 7:37 PM
I'm surprised nobody came up with this idea till now. It's brilliantly simple.
by bradfitz on 3/22/19, 10:21 PM
I just moved this to https://github.com/google/crfs if people want to track that repo instead of Go's build system (which is relatively boring for most people).
by toomuchtodo on 3/22/19, 7:31 PM
by maxmcd on 3/22/19, 9:51 PM
Currently docker build compressed everything in the working directory on every build. This is fine for building images for deploy/upload but is annoying for a local dev situation where you're frequently rebuilding.
Seems like it wouldn't be too hard to write an alternate docker build that checks a previously built "Stargz" and just sends the additional files? (There would be some complexity here reassembling a valid tar within hyperkit).
I might be missing something here, it might be misplacing the bottleneck during build, but every time I'm annoying by this problem it seems part of the issue is the single fat tar that needs to be created every time.
edit: this strategy could also work with docker-machine building on remote machines
by catern on 3/22/19, 8:45 PM
>Currently, however, starting a container in many environments requires doing a pull operation from a container registry to read the entire container image from the registry and write the entire container image to the local machine's disk. It's pretty silly (and wasteful) that a read operation becomes a write operation.
What's silly is to claim that this is the problem. Any read is going to be a write operation, at multiple levels, thanks to systems of transparent caching: To a nearby CDN, to local disk, to local memory, to your CPU cache, etc. These are optimizations, they aren't making your container startup any slower.
The real problem, which this tool indeed helps to solve, is that reading the entire image must complete before you're able to start further processes which read specific parts of the image. Not anything to do with "reads causing writes".
by fulafel on 3/23/19, 9:38 AM
Edit: " For isolation and other reasons, we run all our containers in a single-use fresh VMs." So they had no caching for the base layers unless those were primed in the vm image?
by tsurkoprt on 3/23/19, 3:23 AM
by whalesalad on 3/22/19, 9:16 PM