unionstore: make lock earlier (#484)

Signed-off-by: xiongjiwei <xiongjiwei1996@outlook.com>
This commit is contained in:
xiongjiwei 2022-04-29 12:57:25 +08:00 committed by GitHub
parent 577843f1b9
commit 3984ffee09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -111,14 +111,15 @@ func (db *MemDB) Staging() int {
// Release publish all modifications in the latest staging buffer to upper level.
func (db *MemDB) Release(h int) {
db.Lock()
defer db.Unlock()
if h != len(db.stages) {
// This should never happens in production environment.
// Use panic to make debug easier.
panic("cannot release staging buffer")
}
db.Lock()
defer db.Unlock()
if h == 1 {
tail := db.vlog.checkpoint()
if !db.stages[0].isSamePosition(&tail) {
@ -131,6 +132,9 @@ func (db *MemDB) Release(h int) {
// Cleanup cleanup the resources referenced by the StagingHandle.
// If the changes are not published by `Release`, they will be discarded.
func (db *MemDB) Cleanup(h int) {
db.Lock()
defer db.Unlock()
if h > len(db.stages) {
return
}
@ -140,8 +144,6 @@ func (db *MemDB) Cleanup(h int) {
panic("cannot cleanup staging buffer")
}
db.Lock()
defer db.Unlock()
cp := &db.stages[h-1]
if !db.vlogInvalid {
curr := db.vlog.checkpoint()
@ -294,6 +296,9 @@ func (db *MemDB) Dirty() bool {
}
func (db *MemDB) set(key []byte, value []byte, ops ...kv.FlagsOp) error {
db.Lock()
defer db.Unlock()
if db.vlogInvalid {
// panic for easier debugging.
panic("vlog is resetted")
@ -308,9 +313,6 @@ func (db *MemDB) set(key []byte, value []byte, ops ...kv.FlagsOp) error {
}
}
db.Lock()
defer db.Unlock()
if len(db.stages) == 0 {
db.dirty = true
}