-
Notifications
You must be signed in to change notification settings - Fork 3.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
roachtest: minor improvements #124922
roachtest: minor improvements #124922
Conversation
Epic: None Release note: None
The roachtest runner consists of a number of workers running tests in parallel. Each worker is linked to the cluster that it is currently using. Before this patch, a cluster was only registered with the test once a test started. This was unnecessarily late; the patch moves the registration to happen earlier, closer to when the cluster is created or picked up by the worker, which better matches the intended semnatics of this link. In particular, the linking now happens before the cockroach binary is uploaded to the cluster (a potentially slow operation), whereas before it happened after. These links between workers and clusters are used by the roachtest's web UI, which will now more accurately show who's using a cluster. Epic: none Release note: None
Thank you for contributing to CockroachDB. Please ensure you have followed the guidelines for creating a PR. Before a member of our team reviews your PR, I have some potential action items for you:
I have added a few people who may be able to assist in reviewing:
🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
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!
bors r+ |
See individual commits.
The commits were extracted from #124780.