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

📖 Explain what may happen when using OnlyMetadata and Get on the concrete type instead of PartialMetadataObject #1747

Merged
merged 2 commits into from
Feb 17, 2022

Conversation

maelvls
Copy link
Contributor

@maelvls maelvls commented Dec 14, 2021

In #1660, we found that it is too easy for users to duplicate cache projections, for example by creating a watch with OnlyMetadata, which creates a metadata cache, and then using the concrete type to get the watched object, which automatically creates a cache of the concrete projection.

Duplicating the cached projections is probably never what the user wanted to do, and leads to:

  • Increased memory usage,
  • Race conditions since caches aren't synchronized.

At first, I wanted to follow the suggestion in #1660 (comment):

We could add a check for this into pkg/cache and error out if someone requests something that we already have in a different projection

I then realized that I don't really know how to make this change.

Can I suggest starting with a quick warning that people would see when looking at OnlyMetadata? In this PR, I added the warning.

To sum up my goal in this PR, I wish to document the following:

  1. The three following Get calls will create three different caches:

    // Concrete client:
    pod := &v1.Pod{}
    mgr.GetClient().Get(ctx, nsAndName, pod)
    
    // Unstructured client:
    pod := &unstructured.Unstructured{}
    mgr.GetClient().Get(ctx, nsAndName, pod)
    
    // Metadata-only client:
    pod := &metav1.PartialObjectMetadata{}
    mgr.GetClient().Get(ctx, nsAndName, pod)
  2. Caches are not synchronized, meaning that you may end up with data races when using two different cache projections.

  3. Using OnlyMetadata option should not be used with the concrete nor the unstructured clients.

@linux-foundation-easycla
Copy link

linux-foundation-easycla bot commented Dec 14, 2021

CLA Signed

The committers are authorized under a signed CLA.

@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Dec 14, 2021
@k8s-ci-robot
Copy link
Contributor

Welcome @maelvls!

It looks like this is your first PR to kubernetes-sigs/controller-runtime 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/controller-runtime has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Dec 14, 2021
@k8s-ci-robot
Copy link
Contributor

Hi @maelvls. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Dec 14, 2021
@maelvls maelvls changed the title Explain what may happen when using the "full" object along with OnlyMetadata 📖 Explain what may happen when using OnlyMetadata and Get on the concrete type instead of PartialMetadataObject Dec 14, 2021
@k8s-ci-robot k8s-ci-robot added size/S Denotes a PR that changes 10-29 lines, ignoring generated files. and removed size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Dec 14, 2021
@maelvls maelvls force-pushed the document-race branch 2 times, most recently from f51ece6 to d50964d Compare December 14, 2021 11:32
@joelanford
Copy link
Member

@maelvls is this still a work in progress? As far as I can tell, this looks like a great clarification and something we could go ahead and merge.

@maelvls maelvls marked this pull request as ready for review January 11, 2022 21:50
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jan 11, 2022
@maelvls
Copy link
Contributor Author

maelvls commented Jan 11, 2022

Thanks, I think it is ready to go!

// pod := &v1.Pod{} // ❌
// mgr.GetClient().Get(ctx, nsAndName, pod) // ❌
//
// pod := &metav1.PartialObjectMetadata{} // ✅
Copy link
Member

@alvaroaleman alvaroaleman Feb 16, 2022

Choose a reason for hiding this comment

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

Doesn't this need typemeta set?

Copy link
Contributor Author

@maelvls maelvls Feb 17, 2022

Choose a reason for hiding this comment

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

That's a very good point, controller-runtime would have a hard time figuring out which type we are referring to with just &metav1.PartialObjectMetadata{} 😅

I fixed this in 3318359.

@alvaroaleman alvaroaleman added the tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. label Feb 17, 2022
Copy link
Member

@alvaroaleman alvaroaleman left a comment

Choose a reason for hiding this comment

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

thank you!

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Feb 17, 2022
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: alvaroaleman, maelvls

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Feb 17, 2022
@k8s-ci-robot k8s-ci-robot merged commit b6da9c1 into kubernetes-sigs:master Feb 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants