Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions content/manuals/engine/storage/containerd.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ each layer occupies more space. The compressed format enables faster pulls and
pushes, but requires additional disk capacity.

This difference is particularly noticeable with multiple images sharing the
same base layers. With legacy storage drivers, shared base layers were stored
once locally, and reused images that depended on them. With containerd, each
image stores its own compressed version of shared layers, even though the
uncompressed layers are still de-duplicated through snapshotters. The
compressed storage adds overhead proportional to the number of images using
those layers.
same base layers. Like legacy storage drivers, the containerd image store
deduplicates shared layers: if two images reference the same layer, that
layer's compressed blob is stored once in the content store, identified by
its digest. The overhead compared to legacy drivers is not duplication of
shared layers, but the dual storage of each unique layer: one compressed copy
in the content store and one unpacked copy in the snapshotter.

If disk space is constrained, consider the following:

Expand Down
Loading