Spaces:
Running
Running
File size: 6,907 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 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package lsmkv
import (
"bufio"
"bytes"
"io"
"github.com/pkg/errors"
"github.com/weaviate/weaviate/adapters/repos/db/lsmkv/segmentindex"
)
type compactorSet struct {
// c1 is always the older segment, so when there is a conflict c2 wins
// (because of the replace strategy)
c1 *segmentCursorCollection
c2 *segmentCursorCollection
// the level matching those of the cursors
currentLevel uint16
secondaryIndexCount uint16
// Tells if tombstones or keys without corresponding values
// can be removed from merged segment.
// (left segment is root (1st) one, keepTombstones is off for bucket)
cleanupTombstones bool
w io.WriteSeeker
bufw *bufio.Writer
scratchSpacePath string
}
func newCompactorSetCollection(w io.WriteSeeker,
c1, c2 *segmentCursorCollection, level, secondaryIndexCount uint16,
scratchSpacePath string, cleanupTombstones bool,
) *compactorSet {
return &compactorSet{
c1: c1,
c2: c2,
w: w,
bufw: bufio.NewWriterSize(w, 256*1024),
currentLevel: level,
cleanupTombstones: cleanupTombstones,
secondaryIndexCount: secondaryIndexCount,
scratchSpacePath: scratchSpacePath,
}
}
func (c *compactorSet) do() error {
if err := c.init(); err != nil {
return errors.Wrap(err, "init")
}
kis, err := c.writeKeys()
if err != nil {
return errors.Wrap(err, "write keys")
}
if err := c.writeIndices(kis); err != nil {
return errors.Wrap(err, "write index")
}
// flush buffered, so we can safely seek on underlying writer
if err := c.bufw.Flush(); err != nil {
return errors.Wrap(err, "flush buffered")
}
var dataEnd uint64 = segmentindex.HeaderSize
if len(kis) > 0 {
dataEnd = uint64(kis[len(kis)-1].ValueEnd)
}
if err := c.writeHeader(c.currentLevel, 0, c.secondaryIndexCount,
dataEnd); err != nil {
return errors.Wrap(err, "write header")
}
return nil
}
func (c *compactorSet) init() error {
// write a dummy header, we don't know the contents of the actual header yet,
// we will seek to the beginning and overwrite the actual header at the very
// end
if _, err := c.bufw.Write(make([]byte, segmentindex.HeaderSize)); err != nil {
return errors.Wrap(err, "write empty header")
}
return nil
}
func (c *compactorSet) writeKeys() ([]segmentindex.Key, error) {
key1, value1, _ := c.c1.first()
key2, value2, _ := c.c2.first()
// the (dummy) header was already written, this is our initial offset
offset := segmentindex.HeaderSize
var kis []segmentindex.Key
for {
if key1 == nil && key2 == nil {
break
}
if bytes.Equal(key1, key2) {
values := append(value1, value2...)
valuesMerged := newSetDecoder().DoPartial(values)
if values, skip := c.cleanupValues(valuesMerged); !skip {
ki, err := c.writeIndividualNode(offset, key2, values)
if err != nil {
return nil, errors.Wrap(err, "write individual node (equal keys)")
}
offset = ki.ValueEnd
kis = append(kis, ki)
}
// advance both!
key1, value1, _ = c.c1.next()
key2, value2, _ = c.c2.next()
continue
}
if (key1 != nil && bytes.Compare(key1, key2) == -1) || key2 == nil {
// key 1 is smaller
if values, skip := c.cleanupValues(value1); !skip {
ki, err := c.writeIndividualNode(offset, key1, values)
if err != nil {
return nil, errors.Wrap(err, "write individual node (key1 smaller)")
}
offset = ki.ValueEnd
kis = append(kis, ki)
}
key1, value1, _ = c.c1.next()
} else {
// key 2 is smaller
if values, skip := c.cleanupValues(value2); !skip {
ki, err := c.writeIndividualNode(offset, key2, values)
if err != nil {
return nil, errors.Wrap(err, "write individual node (key2 smaller)")
}
offset = ki.ValueEnd
kis = append(kis, ki)
}
key2, value2, _ = c.c2.next()
}
}
return kis, nil
}
func (c *compactorSet) writeIndividualNode(offset int, key []byte,
values []value,
) (segmentindex.Key, error) {
return (&segmentCollectionNode{
values: values,
primaryKey: key,
offset: offset,
}).KeyIndexAndWriteTo(c.bufw)
}
func (c *compactorSet) writeIndices(keys []segmentindex.Key) error {
indices := &segmentindex.Indexes{
Keys: keys,
SecondaryIndexCount: c.secondaryIndexCount,
ScratchSpacePath: c.scratchSpacePath,
}
_, err := indices.WriteTo(c.bufw)
return err
}
// writeHeader assumes that everything has been written to the underlying
// writer and it is now safe to seek to the beginning and override the initial
// header
func (c *compactorSet) writeHeader(level, version, secondaryIndices uint16,
startOfIndex uint64,
) error {
if _, err := c.w.Seek(0, io.SeekStart); err != nil {
return errors.Wrap(err, "seek to beginning to write header")
}
h := &segmentindex.Header{
Level: level,
Version: version,
SecondaryIndices: secondaryIndices,
Strategy: segmentindex.StrategySetCollection,
IndexStart: startOfIndex,
}
if _, err := h.WriteTo(c.w); err != nil {
return err
}
return nil
}
// Removes values with tombstone set from input slice. Output slice may be smaller than input one.
// Returned skip of true means there are no values left (key can be omitted in segment)
// WARN: method can alter input slice by swapping its elements and reducing length (not capacity)
func (c *compactorSet) cleanupValues(values []value) (vals []value, skip bool) {
if !c.cleanupTombstones {
return values, false
}
// Reuse input slice not to allocate new memory
// Rearrange slice in a way that tombstoned values are moved to the end
// and reduce slice's length.
last := 0
for i := 0; i < len(values); i++ {
if !values[i].tombstone {
// Swap both elements instead overwritting `last` by `i`.
// Overwrite would result in `values[last].value` pointing to the same slice
// as `values[i].value`.
// If `values` slice is reused by multiple nodes (as it happens for map cursors
// `segmentCursorCollectionReusable` using `segmentCollectionNode` as buffer)
// populating values[i].value would overwrite values[last].value
// Swaps makes sure values[i].value and values[last].value point to different slices
values[last], values[i] = values[i], values[last]
last++
}
}
if last == 0 {
return nil, true
}
return values[:last], false
}
|