-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Concurrency issues when doing multiple Google Container Engine cluster or Pool operations #930
Comments
We've worked around this using the |
I added a mutex to ensure operations on the same cluster are applied serially. The work-around using |
And when would that next release be? :)
…On 9 Jan 2018 5:41 pm, "Vincent Roseberry" ***@***.***> wrote:
I added a mutex to ensure operations on the same cluster are applied
serially. The work-around using depends_on won't be necessary next
release :)
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#930 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABavifzzwrHu6wXsZy5Er2KNX6o75idHks5tI6S7gaJpZM4RWDW7>
.
|
No dates set yet but should be soon :) We have a good amount of changes/bug fixes waiting for a release. |
@rosbo just to config, it will solve this problem (this is me trying to update the min node count on three pools):
|
Yes it should, I tested my fix with a similar example. |
Then I plead with you to publish a new version soon as this is crippling
us! Thank youuu
…On 9 Jan 2018 10:36 pm, "Vincent Roseberry" ***@***.***> wrote:
Yes it should, I tested my fix with a similar example.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#930 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABaviS73azWaAsMu-qJyc1WH1Z2pTzSaks5tI-n8gaJpZM4RWDW7>
.
|
Signed-off-by: Modular Magician <magic-modules@google.com>
hashicorp/terraform-provider-google#930 seems to imply that each provider has a mutex lock so having one node pool on a different provider could cause parallel ops.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks! |
Hi there,
We have a terraform file that manages multiple GKE clusters and associated node pools.
You can however, only perform a single operation on a cluster pool at a time.
In this example, I had two operations to two different node pools within the same cluster. Terraform attempts to do such calls in parallel resulting in one of them failing:
There should be a concurrency limit on node pool, and cluster operations.
The text was updated successfully, but these errors were encountered: