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

Ensure old revision stays Unreachable after Knative Service update #14287

Closed
wants to merge 1 commit into from

Conversation

SaschaSchwarze0
Copy link
Contributor

Fixes #14115 by changing how the Knative PodAutoscaler detects whether a ServerlessService is ready.

Before my change, it called the IsReady function of the ServerlessService which is returning false if the generation is different in metadata and status.

Due to it temporarily not being ready, the PodAutoscaler is set to SKSReady=Unknown here.

The PodAutoscaler then goes Ready=False because SKSReady is part of Ready here.

The revision inherits the PodAutoscaler status and sets Active=Unknown here.

This causes the PodAutoscaler's Reachability to be set to Unknown here.

Once the PodAutoscaler is not anymore marked as unreachable, the scaling boundary will be set to the min value from the annotation again here. This will cause a revision that is being not needed anymore to scale up again for a short moment which causes additional pods.

I am changing the logic in the KPA reconciler to directly look at the Ready condition of the ServerlessService instead of calling its IsReady function.

I need somebody with experience in this area to carefully assess if there are side-effects.

/kind bug

Release Note

An Unreachable revision is now not anymore causing additional pods to get created while it is scaled down to 0.

Directly check the ServerlessService Ready condition instead of its IsReady condition so that we do not see a temporary false when its generation is changing.

Signed-off-by: Sascha Schwarze <[email protected]>
@knative-prow knative-prow bot added the kind/bug Categorizes issue or PR as related to a bug. label Aug 21, 2023
@knative-prow
Copy link

knative-prow bot commented Aug 21, 2023

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: SaschaSchwarze0
Once this PR has been reviewed and has the lgtm label, please assign creydr for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found 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

@knative-prow
Copy link

knative-prow bot commented Aug 21, 2023

Hi @SaschaSchwarze0. Thanks for your PR.

I'm waiting for a knative 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.

@knative-prow knative-prow bot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Aug 21, 2023
@knative-prow knative-prow bot added area/API API objects and controllers area/autoscale labels Aug 21, 2023
@psschwei
Copy link
Contributor

/ok-to-test

@knative-prow knative-prow bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 28, 2023
@codecov
Copy link

codecov bot commented Aug 28, 2023

Codecov Report

Patch coverage: 100.00% and project coverage change: -0.04% ⚠️

Comparison is base (e9425f8) 86.26% compared to head (1a13f7b) 86.23%.
Report is 13 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #14287      +/-   ##
==========================================
- Coverage   86.26%   86.23%   -0.04%     
==========================================
  Files         195      195              
  Lines       14702    14703       +1     
==========================================
- Hits        12683    12679       -4     
- Misses       1719     1723       +4     
- Partials      300      301       +1     
Files Changed Coverage Δ
pkg/reconciler/autoscaling/kpa/kpa.go 95.28% <100.00%> (+0.02%) ⬆️

... and 2 files with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@psschwei
Copy link
Contributor

/cc @dprotaso

@knative-prow knative-prow bot requested a review from dprotaso August 28, 2023 14:15
@dprotaso
Copy link
Member

So I was thinking about simplifying the circular logic in the revision reconciler using an approach where reachability only flows downward and isn't influenced by the child resources.

I have a WIP here - https://github.com/knative/serving/pull/14309/files#diff-7ad1d76110f486046dc682be17600b22d4958b12160852c9f4040ce32f5d8dfc

Surprising all the e2e tests pass without any changes. I think this is because after reachability to the spec we simplified things years later by adding a ScaleTargetInitialized condition.

I'm going to test your specific scenario with those changes.

@dprotaso
Copy link
Member

I tested your scenario mentioned here: #14115 and the changes in #14309 did fix it.

@dprotaso
Copy link
Member

Closing in favour of #14309

@dprotaso dprotaso closed this Sep 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/API API objects and controllers area/autoscale kind/bug Categorizes issue or PR as related to a bug. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Old unreachable revision is causing new pods to get created when it should scale down
3 participants