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

membuffer: fix memory leak in red-black tree #1483

Merged
merged 9 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/unionstore/memdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ func testMemBufferCache(t *testing.T, buffer MemBuffer) {
}

func TestMemDBLeafFragmentation(t *testing.T) {
// RBT cannot pass the leaf fragmentation test.
testMemDBLeafFragmentation(t, newRbtDBWithContext())
testMemDBLeafFragmentation(t, newArtDBWithContext())
}

Expand Down
36 changes: 27 additions & 9 deletions internal/unionstore/rbt/rbt.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,12 @@ func (db *RBT) RevertVAddr(hdr *arena.MemdbVlogHdr) {
// If there are no flags associated with this key, we need to delete this node.
keptFlags := node.getKeyFlags().AndPersistent()
if keptFlags == 0 {
db.deleteNode(node)
node.markDelete()
db.count--
db.size -= int(node.klen)
} else {
node.setKeyFlags(keptFlags)
db.dirty = true
node.setKeyFlags(keptFlags)
}
} else {
db.size += len(db.vlog.GetValue(hdr.OldValue))
Expand Down Expand Up @@ -279,7 +281,7 @@ func (db *RBT) SelectValueHistory(key []byte, predicate func(value []byte) bool)
// GetFlags returns the latest flags associated with key.
func (db *RBT) GetFlags(key []byte) (kv.KeyFlags, error) {
x := db.traverse(key, false)
if x.isNull() {
if x.isNull() || x.isDeleted() {
return 0, tikverr.ErrNotExist
}
return x.getKeyFlags(), nil
Expand Down Expand Up @@ -347,12 +349,16 @@ func (db *RBT) Set(key []byte, value []byte, ops ...kv.FlagsOp) error {
// the NeedConstraintCheckInPrewrite flag is temporary,
// every write to the node removes the flag unless it's explicitly set.
// This set must be in the latest stage so no special processing is needed.
var flags kv.KeyFlags
flags := x.GetKeyFlags()
if flags == 0 && x.vptr.IsNull() && x.isDeleted() {
db.count++
db.size += int(x.klen)
you06 marked this conversation as resolved.
Show resolved Hide resolved
you06 marked this conversation as resolved.
Show resolved Hide resolved
}
if value != nil {
flags = kv.ApplyFlagsOps(x.getKeyFlags(), append([]kv.FlagsOp{kv.DelNeedConstraintCheckInPrewrite}, ops...)...)
flags = kv.ApplyFlagsOps(flags, append([]kv.FlagsOp{kv.DelNeedConstraintCheckInPrewrite}, ops...)...)
} else {
// an UpdateFlag operation, do not delete the NeedConstraintCheckInPrewrite flag.
flags = kv.ApplyFlagsOps(x.getKeyFlags(), ops...)
flags = kv.ApplyFlagsOps(flags, ops...)
}
if flags.AndPersistent() != 0 {
db.dirty = true
Expand Down Expand Up @@ -881,8 +887,11 @@ func (n *memdbNode) getKey() []byte {

const (
// bit 1 => red, bit 0 => black
nodeColorBit uint16 = 0x8000
nodeFlagsMask = ^nodeColorBit
nodeColorBit uint16 = 0x8000
// bit 1 => node is deleted, bit 0 => node is not deleted
// This flag is used to mark a node as deleted, so that we can reuse the node to avoid memory leak.
deleteFlag uint16 = 1 << 14
nodeFlagsMask = ^(nodeColorBit | deleteFlag)
)

func (n *memdbNode) GetKeyFlags() kv.KeyFlags {
Expand All @@ -894,7 +903,16 @@ func (n *memdbNode) getKeyFlags() kv.KeyFlags {
}

func (n *memdbNode) setKeyFlags(f kv.KeyFlags) {
n.flags = (^nodeFlagsMask & n.flags) | uint16(f)
// only keep the color bit.
n.flags = (nodeColorBit & n.flags) | uint16(f)
}

func (n *memdbNode) markDelete() {
n.flags = (nodeColorBit & n.flags) | deleteFlag
}

func (n *memdbNode) isDeleted() bool {
return n.flags&deleteFlag != 0
}

// RemoveFromBuffer removes a record from the mem buffer. It should be only used for test.
Expand Down
6 changes: 5 additions & 1 deletion internal/unionstore/rbt/rbt_iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (i *RBTIterator) init() {
}
}

if i.isFlagsOnly() && !i.includeFlags {
if (i.isFlagsOnly() && !i.includeFlags) || (!i.curr.isNull() && i.curr.isDeleted()) {
err := i.Next()
_ = err // memdbIterator will never fail
}
Expand Down Expand Up @@ -174,6 +174,10 @@ func (i *RBTIterator) Next() error {
i.curr = i.db.successor(i.curr)
}

if i.curr.isDeleted() {
continue
}

// We need to skip persistent flags only nodes.
if i.includeFlags || !i.isFlagsOnly() {
break
Expand Down
8 changes: 8 additions & 0 deletions internal/unionstore/rbt/rbt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,16 @@ func TestDiscard(t *testing.T) {
}
it, _ := db.Iter(nil, nil)
it.seekToFirst()
cfzjywxk marked this conversation as resolved.
Show resolved Hide resolved
// find a non-deleted key after seek.
for !it.curr.isNull() && it.curr.isDeleted() {
_ = it.Next()
}
assert.False(it.Valid())
it.seekToLast()
// find a non-deleted key after seek.
for !it.curr.isNull() && it.curr.isDeleted() {
_ = it.Next()
}
assert.False(it.Valid())
it.seek([]byte{0xff})
assert.False(it.Valid())
Expand Down
Loading