-
Notifications
You must be signed in to change notification settings - Fork 517
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
fix: should remove the db lock from the context to prevent blocking user requests #2597
Conversation
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.
Do we have something like check-locked here? Since this is not locked, should we change it to checkLocked?
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 |
abbba24
to
8d1bab3
Compare
const rocksdb::Snapshot *GetSnapshot() { | ||
if (snapshot_ == nullptr) { | ||
snapshot_ = storage->GetDB()->GetSnapshot(); // NOLINT | ||
} | ||
return snapshot_; | ||
} |
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 think we should state here in comments that this method is NOT thread-safe.
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.
It's done now.
cc @mapleFU PTAL |
|
This closes #2596