Spaces:
Running
Running
File size: 6,609 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package lsmkv
import (
"bytes"
"github.com/pkg/errors"
"github.com/weaviate/weaviate/entities/lsmkv"
)
type CursorReplace struct {
innerCursors []innerCursorReplace
state []cursorStateReplace
unlock func()
serveCache cursorStateReplace
reusableIDList []int
}
type innerCursorReplace interface {
first() ([]byte, []byte, error)
next() ([]byte, []byte, error)
seek([]byte) ([]byte, []byte, error)
}
type cursorStateReplace struct {
key []byte
value []byte
err error
}
// Cursor holds a RLock for the flushing state. It needs to be closed using the
// .Close() methods or otherwise the lock will never be released
func (b *Bucket) Cursor() *CursorReplace {
b.flushLock.RLock()
if b.strategy != StrategyReplace {
panic("Cursor() called on strategy other than 'replace'")
}
innerCursors, unlockSegmentGroup := b.disk.newCursors()
// we have a flush-RLock, so we have the guarantee that the flushing state
// will not change for the lifetime of the cursor, thus there can only be two
// states: either a flushing memtable currently exists - or it doesn't
if b.flushing != nil {
innerCursors = append(innerCursors, b.flushing.newCursor())
}
innerCursors = append(innerCursors, b.active.newCursor())
return &CursorReplace{
// cursor are in order from oldest to newest, with the memtable cursor
// being at the very top
innerCursors: innerCursors,
unlock: func() {
unlockSegmentGroup()
b.flushLock.RUnlock()
},
}
}
func (c *CursorReplace) Close() {
c.unlock()
}
func (c *CursorReplace) seekAll(target []byte) {
state := make([]cursorStateReplace, len(c.innerCursors))
for i, cur := range c.innerCursors {
key, value, err := cur.seek(target)
if errors.Is(err, lsmkv.NotFound) {
state[i].err = err
continue
}
if errors.Is(err, lsmkv.Deleted) {
state[i].err = err
state[i].key = key
continue
}
if err != nil {
panic(errors.Wrap(err, "unexpected error in seek (cursor type 'replace')"))
}
state[i].key = key
state[i].value = value
}
c.state = state
}
func (c *CursorReplace) serveCurrentStateAndAdvance() ([]byte, []byte) {
id, err := c.cursorWithLowestKey()
if err != nil {
if errors.Is(err, lsmkv.NotFound) {
return nil, nil
}
}
// check if this is a duplicate key before checking for the remaining errors,
// as cases such as 'entities.Deleted' can be better handled inside
// mergeDuplicatesInCurrentStateAndAdvance where we can be sure to act on
// segments in the correct order
if ids, ok := c.haveDuplicatesInState(id); ok {
return c.mergeDuplicatesInCurrentStateAndAdvance(ids)
} else {
return c.mergeDuplicatesInCurrentStateAndAdvance([]int{id})
}
}
func (c *CursorReplace) haveDuplicatesInState(idWithLowestKey int) ([]int, bool) {
key := c.state[idWithLowestKey].key
c.reusableIDList = c.reusableIDList[:0]
for i, cur := range c.state {
if i == idWithLowestKey {
c.reusableIDList = append(c.reusableIDList, i)
continue
}
if bytes.Equal(key, cur.key) {
c.reusableIDList = append(c.reusableIDList, i)
}
}
return c.reusableIDList, len(c.reusableIDList) > 1
}
// if there are no duplicates present it will still work as returning the
// latest result is the same as returning the only result
func (c *CursorReplace) mergeDuplicatesInCurrentStateAndAdvance(ids []int) ([]byte, []byte) {
c.copyStateIntoServeCache(ids[len(ids)-1])
// with a replace strategy only the highest will be returned, but still all
// need to be advanced - or we would just encounter them again in the next
// round
for _, id := range ids {
c.advanceInner(id)
}
if errors.Is(c.serveCache.err, lsmkv.Deleted) {
// element was deleted, proceed with next round
return c.Next()
}
return c.serveCache.key, c.serveCache.value
}
func (c *CursorReplace) copyStateIntoServeCache(pos int) {
resMut := c.state[pos]
if len(resMut.key) > cap(c.serveCache.key) {
c.serveCache.key = make([]byte, len(resMut.key))
} else {
c.serveCache.key = c.serveCache.key[:len(resMut.key)]
}
if len(resMut.value) > cap(c.serveCache.value) {
c.serveCache.value = make([]byte, len(resMut.value))
} else {
c.serveCache.value = c.serveCache.value[:len(resMut.value)]
}
copy(c.serveCache.key, resMut.key)
copy(c.serveCache.value, resMut.value)
c.serveCache.err = resMut.err
}
func (c *CursorReplace) Seek(key []byte) ([]byte, []byte) {
c.seekAll(key)
return c.serveCurrentStateAndAdvance()
}
func (c *CursorReplace) cursorWithLowestKey() (int, error) {
err := lsmkv.NotFound
pos := -1
var lowest []byte
for i, res := range c.state {
if errors.Is(res.err, lsmkv.NotFound) {
continue
}
if lowest == nil || bytes.Compare(res.key, lowest) <= 0 {
pos = i
err = res.err
lowest = res.key
}
}
if err != nil {
return pos, err
}
return pos, nil
}
func (c *CursorReplace) advanceInner(id int) {
k, v, err := c.innerCursors[id].next()
if errors.Is(err, lsmkv.NotFound) {
c.state[id].err = err
c.state[id].key = nil
c.state[id].value = nil
return
}
if errors.Is(err, lsmkv.Deleted) {
c.state[id].err = err
c.state[id].key = k
c.state[id].value = nil
return
}
if err != nil {
panic(errors.Wrap(err, "unexpected error in advance"))
}
c.state[id].key = k
c.state[id].value = v
c.state[id].err = nil
}
func (c *CursorReplace) Next() ([]byte, []byte) {
return c.serveCurrentStateAndAdvance()
}
func (c *CursorReplace) firstAll() {
state := make([]cursorStateReplace, len(c.innerCursors))
for i, cur := range c.innerCursors {
key, value, err := cur.first()
if errors.Is(err, lsmkv.NotFound) {
state[i].err = err
continue
}
if errors.Is(err, lsmkv.Deleted) {
state[i].err = err
state[i].key = key
continue
}
if err != nil {
panic(errors.Wrap(err, "unexpected error in first (cursor type 'replace')"))
}
state[i].key = key
state[i].value = value
}
c.state = state
}
func (c *CursorReplace) First() ([]byte, []byte) {
c.firstAll()
return c.serveCurrentStateAndAdvance()
}
|