-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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: output error and bump vmodule on lease preferences test #107900
roachtest: output error and bump vmodule on lease preferences test #107900
Conversation
The `lease-preferences` roachtest did not log the state of preference conformance on timeout. This commit updates the error check, hit on timeout, to show the result. Also bump the vmodule settings to show lease acquisitions and lease preference errors. Epic: none Informs: cockroachdb#107862 Release note: None
@@ -188,7 +188,8 @@ func runLeasePreferences( | |||
// dc=2: n3 n4 | |||
// ... | |||
// dc=N: n2N-1 n2N | |||
fmt.Sprintf("--locality=region=fake-region,zone=fake-zone,dc=%d", (node-1)/2+1)) | |||
fmt.Sprintf("--locality=region=fake-region,zone=fake-zone,dc=%d", (node-1)/2+1), | |||
"--vmodule=replica_proposal=2,replicate_queue=3,replicate=3") |
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.
Did you check that this won't be too noisy?
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've looked at the logs few times with this change, whilst debugging the failure linked.
It's fine for cockroach.log logging, since there's no workload running. Turning it on after the initial splits/scatter would be better, but I'd rather have it all.
TYFTR bors r=erikgrinaker |
Build succeeded: |
blathers backport 23.1 |
The
lease-preferences
roachtest did not log the state of preference conformance on timeout. This commit updates the error check, hit on timeout, to show the result.Also bump the vmodule settings to show lease acquisitions and lease preference errors.
Epic: none
Informs: #107862
Release note: None