Skip to content
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

admission: lock work queue before reading waiting length #131109

Merged
merged 1 commit into from
Sep 24, 2024

Commits on Sep 24, 2024

  1. admission: lock work queue before reading waiting length

    When replicated work is submitted for admission, it returns early and
    admission proceeds asynchronously to the caller. When `V(1)` is enabled,
    we also log the current queue length in this code path, which is
    protected by a mutex that wasn't acquired previously.
    
    Acquire the queue mutex when `V(1)` is enabled to prevent a race.
    
    Part of: cockroachdb#130187
    Release note: None
    kvoli committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    2eca0bc View commit details
    Browse the repository at this point in the history