-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Revert "Make nodepool concurrent ops scale better (#12488)" #12916
Conversation
Hello! I am a robot. Tests will require approval from a repository maintainer to run. @roaks3, a repository maintainer, has been assigned to review your changes. If you have not received review feedback within 2 business days, please leave a comment on this PR asking them to take a look. You can help make sure that review is quick by doing a self-review and by running impacted tests locally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM from GKE's side.
We might wanna tweak the proposed release note, though? Mark it as type bug (https://googlecloudplatform.github.io/magic-modules/code-review/release-notes/#type-specific-guidelines-and-examples). Probably don't use the word "commit" and mention when the issue started (v6.15). There doesn't seem to be a lot of past precedent for how to word it, but I found one similar case that we may want to copy from:
vpcaccess: reverted new behaviour introduced by resource
google_vpc_access_connector
in4.75.0
.min_throughput
andmax_throughput
fields lost their default value, and customers could not make deployment due to that change.
Added the impacted version. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi there, I'm the Modular magician. I've detected the following information about your changes: Diff reportYour PR generated some diffs in downstreams - here they are.
|
Tests analyticsTotal tests: 225 Click here to see the affected service packages
🟢 All tests passed! View the build log |
This should not be a breaking change, at least not in the typical sense. The previous PR unintentionally mostly removed parallelism, since the cluster write lock would never be acquireable when we're waiting for a node pool to be created/updated/deleted (except for a brief race condition when a node pool request just finished but we haven't yet acquired the read lock while it waits for the operation). This restores parallelism as it previously worked. If anything, the previous PR could be viewed as somewhat breaking because the lack of parallelism could cause TF apply to timeout due to taking longer. For any users impacted in that way, temporarily reducing parallelism until this revert is live should fix that. That works because the timeouts are counting down even when waiting for these locks. Such a workaround would only be for fixing timeouts caused by this issue. This PR is required to fix the apply time. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that makes sense!
bd40f8d
This reverts commit 1dbed42.
Release Note Template for Downstream PRs (will be copied)