-
Notifications
You must be signed in to change notification settings - Fork 886
feat(scaletest/templates): add support for concurrent scenarios #11753
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
feat(scaletest/templates): add support for concurrent scenarios #11753
Conversation
It might be also good to suspend the You can do this by setting
Alternatively, you can just use the |
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.
It was a bit hard for me to go through this review due to Bash syntax, so please assume this to be a high-level review 👍
# we're creating a lot of workspaces at once and some of them may fail | ||
# due to network issues or other transient errors. | ||
coder exp scaletest create-workspaces \ | ||
--retry 5 \ |
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.
I'm curious if this must be ignored&retried, maybe we should identify and fix problems in a different way, even provisioning workspaces slower?
Anyway, consider it to be a side thought.
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.
We would have to ensure terraform registry is cached locally, once we know workspace builds don't use any external networking, we could potentially disable the retry, if we want. 👍🏻
Fixes #10794
This PR includes some other fixes as well.