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

fix: should remove the db lock from the context to prevent blocking user requests #2597

Merged
merged 2 commits into from
Oct 14, 2024

Conversation

git-hulk
Copy link
Member

This closes #2596

@git-hulk git-hulk changed the title Remove the db lock from the context to prevent blocking user requests fix: should remove the db lock from the context to prevent blocking user requests Oct 14, 2024
torwig
torwig previously approved these changes Oct 14, 2024
mapleFU
mapleFU previously approved these changes Oct 14, 2024
Copy link
Member

@mapleFU mapleFU left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have something like check-locked here? Since this is not locked, should we change it to checkLocked?

@git-hulk
Copy link
Member Author

TSAN is caused by some commands that are allowed during restoring DB, which won't use the DB pointer in those commands like INFO/AUTH(commands with ok-loading flag). But the context is now always use the db in construction or destruction, so it might cause the data race even if those command didn't use the DB pointer.

@git-hulk git-hulk dismissed stale reviews from mapleFU and torwig via 8d1bab3 October 14, 2024 10:27
@git-hulk git-hulk force-pushed the remove-db-lock-from-context branch from abbba24 to 8d1bab3 Compare October 14, 2024 10:27
Comment on lines +435 to 440
const rocksdb::Snapshot *GetSnapshot() {
if (snapshot_ == nullptr) {
snapshot_ = storage->GetDB()->GetSnapshot(); // NOLINT
}
return snapshot_;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should state here in comments that this method is NOT thread-safe.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's done now.

@PragmaTwice
Copy link
Member

cc @mapleFU PTAL

Copy link

@mapleFU mapleFU merged commit 94eb31c into apache:unstable Oct 14, 2024
32 checks passed
nathanlo-hrt pushed a commit to nathanlo-hrt/kvrocks that referenced this pull request Oct 17, 2024
git-hulk added a commit that referenced this pull request Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Using ReadLockGuard/WriteLockGuard in Context might block user requests
4 participants