-
Notifications
You must be signed in to change notification settings - Fork 412
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
KVStore: Reduce lock contention in RegionPersister::doPersist
(release-6.5)
#8593
KVStore: Reduce lock contention in RegionPersister::doPersist
(release-6.5)
#8593
Conversation
/run-all-tests |
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.
lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: CalvinNeo, Lloyd-Pottiger The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
cherry-pick of #8584
What problem does this PR solve?
Issue Number: close #8583
Problem Summary:
tiflash/dbms/src/Storages/KVStore/MultiRaft/RegionPersister.cpp
Lines 99 to 125 in 5980908
RegionPersister::doPersist
acquires a lock and callsPageStorage::write
with the lock. This means when we're persisting Region meta, all other threads can not do the persistence for other Region meta. Which is not reasonable.What is changed and how it works?
There is a
region_task_lock
to ensure that only one thread could callRegionPersister::doPersist
for the same region_id at the same time. AndPageStorage
support multi-thread reading and writing for different page_id. There is no need to acquire another lock inRegionPersister::doPersist
that could slowdown the raft apply processAnd also remove calling
KVStore::persistRegion
with a nullregion_task_lock
. So we can simplify codes and remove the memberRegionPersister:: RegionManager
Check List
Tests
Side effects
Documentation
Release note