Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don’t discard annotations on blob reuse and partial pulls #1892

Merged
merged 10 commits into from
Mar 23, 2023

Conversation

mtrmac
Copy link
Collaborator

@mtrmac mtrmac commented Mar 21, 2023

Primarily, this modifies the TryReuseBlob* and PutBlobPartial code paths to preserve annotations in the source manifest; fixes #1888 .

To do that, the private PutBlob* now return a private.UploadedBlob, and TryReusingBlobWithOptions returns a ReusedBlob, with a much more specific and explicitly documented set of fields and requirements, with the idea that adding a new struct is a small price to pay for the ability to be more precise about field semantics.

Also, this fixes a possible infinite recursion (when storageImageDestination is used incorrectly)

See individual commit messages for details.

@mtrmac mtrmac added the kind/bug A defect in an existing functionality (or a PR fixing it) label Mar 21, 2023
@mtrmac mtrmac force-pushed the TryReuse-annotations branch 2 times, most recently from eb33bbc to e270b27 Compare March 21, 2023 19:20
Copy link
Member

@vrothberg vrothberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@TomSweeneyRedHat
Copy link
Member

CHanges LGTM, but looks like you need a rebase.

mtrmac added 10 commits March 22, 2023 22:30
... which was introduced by a previous incorrect refactoring.

Signed-off-by: Miloslav Trmač <[email protected]>
…LayerInfo

- Introduce our private addedLayerInfo so that we can make changes.
- Rename indexToPulledLayerInfo to indexToAddedLayerInfo, to be more precise.
- Store values, not unnecessary pointers, in the indexToAddedLayerInfo map.
- In queueOrCommit and commitLayer, pass addedLayerInfo as a whole instead of components,
  and put index before the info.

Should not change behavior.

Signed-off-by: Miloslav Trmač <[email protected]>
... to be a bit more consistent.

Should not change behavior.

Signed-off-by: Miloslav Trmač <[email protected]>
…AsPending

We will want to call it without having a full BlobInfo.

Signed-off-by: Miloslav Trmač <[email protected]>
... instead of the whole addedLayerInfo,
to be more explicit about what is necessary.

Should not change behavior.

Signed-off-by: Miloslav Trmač <[email protected]>
... to make it package-private.

Should not change behavior.

Signed-off-by: Miloslav Trmač <[email protected]>
By construction, every layer for which we add an addedLayerInfo
is already recorded in blobDiffIDs, so we don't need the size.

So, simplify addedLayerInfo by removing the field, and only provide
the value on the code path where it could possibly make a difference.

Should not change behavior.

Signed-off-by: Miloslav Trmač <[email protected]>
This is a subset of types.BlobInfo the transports
actually should deal with. Also tighten the semantics a bit,
to be much more explicit about what the transports are responsible for.

This allows us to stop tracking MIME types in storage.addedLayerInfo,
so simplify that.

Then fix the generic code so that blob annotations are not discarded
on blob reuse.

Signed-off-by: Miloslav Trmač <[email protected]>
This is a subset of types.BlobInfo the transports
actually should deal with, to be much more explicit
about what the transports are responsible for.

Should not change behavior, in practice.

Signed-off-by: Miloslav Trmač <[email protected]>
This fixes preserving annotations also on that path.

Signed-off-by: Miloslav Trmač <[email protected]>
@mtrmac mtrmac force-pushed the TryReuse-annotations branch from e270b27 to a96a7cf Compare March 22, 2023 21:33
@vrothberg vrothberg merged commit f9ef62d into containers:main Mar 23, 2023
@mtrmac mtrmac deleted the TryReuse-annotations branch March 23, 2023 18:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug A defect in an existing functionality (or a PR fixing it)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Image Copy looses layer annotations when reusing blob
3 participants