-
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
rac2: reduce tokenCounter mutex contention #143518
rac2: reduce tokenCounter mutex contention #143518
Conversation
It looks like your PR touches production code but doesn't add or edit any test code. Did you consider adding tests to your PR? 🦉 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.
see https://cockroachlabs.slack.com/archives/C06UFBJ743F/p1743018300491679 for motivation
Reviewable status:
complete! 0 of 0 LGTMs obtained (waiting on @kvoli)
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.
Reviewed 1 of 1 files at r1, all commit messages.
Reviewable status:complete! 1 of 0 LGTMs obtained (waiting on @sumeerbhola)
pkg/kv/kvserver/kvflowcontrol/rac2/token_counter.go
line 326 at r1 (raw file):
tokensAvailable := t.tokensLocked(wc) if tokensAvailable <= 0 { t.mu.Unlock()
This will need a // nolint:deferunlockcheck
inline comment inline, or at the top of the function iirc. Ditto for adjustLockedAndUnlock
.
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.
Reviewable status:
complete! 1 of 0 LGTMs obtained (waiting on @kvoli)
pkg/kv/kvserver/kvflowcontrol/rac2/token_counter.go
line 326 at r1 (raw file):
Previously, kvoli (Austen) wrote…
This will need a
// nolint:deferunlockcheck
inline comment inline, or at the top of the function iirc. Ditto foradjustLockedAndUnlock
.
I couldn't figure out the right dev lint ...
incantation to trigger this in my local build -- do you happen to know?
never mind: |
The metrics update and logging are moved out of the critical section. Epic: none Release note: None
44d44ad
to
80484e0
Compare
TFTR! |
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.
Reviewable status:
complete! 0 of 0 LGTMs obtained (and 1 stale) (waiting on @sumeerbhola)
pkg/kv/kvserver/kvflowcontrol/rac2/token_counter.go
line 326 at r1 (raw file):
Previously, sumeerbhola wrote…
I couldn't figure out the right
dev lint ...
incantation to trigger this in my local build -- do you happen to know?
I've never gotten this to work, I usually just push the changes and see what happens with engflow.
bors r=kvoli |
The metrics update and logging are moved out of the critical section.
Epic: none
Release note: None