-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcompaction.go
467 lines (370 loc) · 9.71 KB
/
compaction.go
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
package bitcask
import (
"errors"
"os"
"slices"
"sort"
"sync"
)
type Compaction struct {
inputs []*Wal
output *Wal
writer *WalRewriter
hintWriter *HintWriter
edit *ManifestEdit
mu sync.RWMutex
}
func NewCompaction(inputs []*Wal, outputFid uint64) (*Compaction, error) {
dir := inputs[0].Dir()
baseTime := inputs[0].BaseTime()
deleteFiles := make([]LogFile, len(inputs))
for idx := range inputs {
inputs[idx].Ref()
baseTime = min(baseTime, inputs[idx].BaseTime())
deleteFiles[idx] = LogFile{
wal: inputs[idx],
fid: inputs[idx].Fid(),
}
}
outputWal, err := NewWal(MergePath(dir, outputFid), outputFid, int64(baseTime))
if err != nil {
return nil, err
}
writer, err := NewHintWriter(TmpPath(dir, outputFid), outputFid, int64(baseTime))
if err != nil {
return nil, err
}
// the compaction may generate an empty wal, which don't have to keep it
edit := &ManifestEdit{
addFiles: nil,
deleteFiles: deleteFiles,
hasNextFid: true,
nextFid: outputFid + 1,
}
return &Compaction{
inputs: inputs,
output: outputWal,
hintWriter: writer,
writer: NewWalRewriter(outputWal, 1024*1024), // 1MB
edit: edit,
}, nil
}
func (c *Compaction) Finalize() error {
c.mu.Lock()
defer c.mu.Unlock()
var err error
if err = c.writer.Flush(); err != nil {
return err
}
if err = c.hintWriter.Flush(); err != nil {
return err
}
// corner case: empty output wal
// otherwise, we should add the output wal to manifest
if c.output.Empty() {
return nil
}
c.edit.addFiles = append(c.edit.addFiles, LogFile{
wal: c.output,
fid: c.output.Fid(),
})
walName := WalFilename(c.output.Fid())
hintName := HintFilename(c.output.Fid())
if err = c.output.Rename(walName); err != nil {
return err
}
return c.hintWriter.Wal().Rename(hintName)
}
func (c *Compaction) Destroy() {
c.mu.Lock()
defer c.mu.Unlock()
// corner case: empty hint file
if c.hintWriter.Wal().Empty() {
c.hintWriter.Wal().Unref()
}
_ = c.hintWriter.Close()
_ = c.writer.Close()
c.output.Unref()
for idx := range c.inputs {
c.inputs[idx].Unref()
}
}
func (db *DBImpl) maybeScheduleCompaction() {
if db.reclaiming.Load() {
return
}
if !db.compacting.CompareAndSwap(false, true) {
return
}
// only one reach here
db.mu.Lock()
defer db.mu.Unlock()
if db.bgErr != nil {
db.compacting.Store(false)
return
}
candidateWals := make([]PickerWalInfo, 0, len(db.manifest.wals))
for fid := range db.manifest.wals {
// skip the active wal
if fid == db.manifest.active.fid {
continue
}
candidateWals = append(candidateWals, PickerWalInfo{
Fid: fid,
WalSize: db.manifest.wals[fid].wal.Size(),
CreateTime: db.manifest.wals[fid].wal.CreateTime(),
FreeBytes: db.manifest.wals[fid].freeBytes + db.manifest.wals[fid].deltaFreeBytes,
})
}
filterdWals := db.opts.CompactionPicker(candidateWals)
if len(filterdWals) == 0 {
db.compacting.Store(false)
return
}
db.backgroundCompactionLocked(filterdWals)
}
func (db *DBImpl) backgroundCompactionLocked(wals []uint64) {
inputs := make([]*Wal, len(wals))
for idx := range wals {
inputs[idx] = db.manifest.wals[wals[idx]].wal
}
fid := db.manifest.GenFid()
compaction, err := NewCompaction(inputs, fid)
if err != nil {
db.bgErr = err
db.compacting.Store(false)
return
}
db.compaction = compaction
// run compaction without any lock
go db.doCompaction(compaction)
}
func (db *DBImpl) doCompaction(compaction *Compaction) {
var err error
defer func() {
db.compacting.Store(false)
compaction.Destroy()
}()
if err = db.doCompactionWork(compaction); err == nil {
return
}
db.mu.Lock()
defer db.mu.Unlock()
db.bgErr = err
}
func (db *DBImpl) doCompactionWork(compaction *Compaction) error {
var err error
for idx := range compaction.inputs {
if err = db.compactOneWal(
compaction.writer, compaction.hintWriter, compaction.inputs[idx],
); err != nil {
return err
}
}
if err = compaction.Finalize(); err != nil {
return err
}
// here, we should update the manifest and index synchronously and atomicly
// otherwise, whether the index or manifest update first, the query will not find the
// related wal, and return key not found
//
// at the same time, we don't want to hold the mutex for a long time, especially updating
// the index via hint wal, which maybe time consuming
var txn *ManifestTxn
onePhase := func() error {
var err error
db.mu.Lock()
txn, err = db.manifest.NewTxn()
db.mu.Unlock()
if err != nil {
return err
}
// let the edit visible
edit := &ManifestEdit{
addFiles: compaction.edit.addFiles,
hasNextFid: compaction.edit.hasNextFid,
nextFid: compaction.edit.nextFid,
}
txn.Apply(edit)
// update the index without any lock and ignore any error
// FIXME: put operations may evict some keys, we should put it into an edit
_ = IterateHint(compaction.hintWriter.Wal(), func(record *HintRecord) error {
_ = db.index.Put(record.ns, record.key, record.fid, record.off, record.size, nil)
return nil
})
return nil
}
twoPhase := func() error {
db.mu.Lock()
defer db.mu.Unlock()
// commit the txn
edit := &ManifestEdit{
deleteFiles: compaction.edit.deleteFiles,
}
if err := txn.Commit(edit); err != nil {
return err
}
// clean un-used files
_ = db.manifest.CleanFiles(false)
db.compaction = nil
// cache the hint file size
hintWal := compaction.hintWriter.Wal()
db.hintSizeCache[hintWal.Fid()] = int64(hintWal.Size())
for idx := range compaction.edit.deleteFiles {
logFile := compaction.edit.deleteFiles[idx]
delete(db.hintSizeCache, logFile.fid)
}
return nil
}
if err = onePhase(); err != nil {
return err
}
return twoPhase()
}
func (db *DBImpl) compactOneWal(dst *WalRewriter, hintWriter *HintWriter, src *Wal) error {
bufPtr, _ := db.recordPool.Get().(*[]byte)
defer db.recordPool.Put(bufPtr)
var hintRecord HintRecord
return IterateRecord(src, func(record *Record, foff, _ uint64) error {
// the foff points to the start offset of data in the wal
// however, the offset used by ReadRecord of wal expects the start offset of data header
foff -= RecordHeaderSize
if db.doFilter(record, src.fid, foff) {
return nil
}
recordBytes, err := record.Encode(*bufPtr, dst.Wal().BaseTime())
if err != nil {
return err
}
// write dst wal
if foff, err = dst.AppendRecord(recordBytes); err != nil {
return err
}
// write dst hint wal
hintRecord.ns = record.Ns
hintRecord.key = record.Key
hintRecord.fid = dst.Wal().Fid()
hintRecord.off = foff
hintRecord.size = uint64(len(recordBytes))
return hintWriter.AppendRecord(&hintRecord)
})
}
func (db *DBImpl) doFilter(srcRecord *Record, srcFid, srcOff uint64) bool {
fid, off, _, err := db.index.Get(srcRecord.Ns, srcRecord.Key)
if err != nil { // the key has been deleted or evicted
return true
}
if fid != srcFid || off != srcOff { // the key has been updated
return true
}
if db.opts.CompactionFilter != nil {
if db.opts.CompactionFilter(srcRecord.Ns, srcRecord.Key, srcRecord.Value, srcRecord.Meta) {
// compaction filter failed, the key should be deleted
return true
}
}
// the key should be retained
return false
}
func (db *DBImpl) getCompactionWalsLocked() []uint64 {
if !db.compacting.Load() || db.compaction == nil {
return nil
}
c := db.compaction
c.mu.RLock()
defer c.mu.RUnlock()
wals := make([]uint64, 0, len(c.inputs)+1)
wals = append(wals, c.output.Fid())
for idx := range c.inputs {
wals = append(wals, c.inputs[idx].Fid())
}
return wals
}
func (db *DBImpl) reclaimDiskUsage(expect int64) {
if !db.reclaiming.CompareAndSwap(false, true) {
return
}
// only one reach here
defer func() {
db.reclaiming.Store(false)
}()
db.mu.Lock()
defer db.mu.Unlock()
if db.bgErr != nil {
return
}
usage, err := db.approximateDiskUsageLocked()
if err != nil {
db.bgErr = errors.Join(err, ErrDiskOutOfLimit)
return
}
if usage <= expect {
return
}
compactionWals := db.getCompactionWalsLocked()
files := make([]LogFile, 0, len(db.manifest.wals))
for fid := range db.manifest.wals {
// exclude the compation wals
if slices.Contains(compactionWals, fid) {
continue
}
// skip the active wal
if fid == db.manifest.ActiveWal().Fid() {
continue
}
files = append(files, LogFile{
fid: fid,
wal: db.manifest.wals[fid].wal,
})
}
db.mu.Unlock()
// sort by create time in positive order
sort.Slice(files, func(i, j int) bool {
return files[i].wal.CreateTime() < files[j].wal.CreateTime()
})
idx := 0
deleteFiles := make([]LogFile, 0, 3)
// reclaim the old wals
for usage > expect && idx < len(files) {
usage -= int64(files[idx].wal.Size())
deleteFiles = append(deleteFiles, files[idx])
idx++
}
db.mu.Lock()
if len(deleteFiles) == 0 {
db.bgErr = ErrDiskOutOfLimit
return
}
// apply the edit
edit := &ManifestEdit{
deleteFiles: deleteFiles,
}
if err = db.manifest.LogAndApply(edit); err != nil {
db.bgErr = errors.Join(err, ErrDiskOutOfLimit)
}
// delete the related hint wals
for idx := range deleteFiles {
// ignore errors
delete(db.hintSizeCache, deleteFiles[idx].fid)
_ = os.Remove(HintPath(db.opts.Dir, deleteFiles[idx].fid))
}
}
// the method estimates total size of database
// warning: the return size includes the total size of database reference files
func (db *DBImpl) approximateDiskUsageLocked() (int64, error) {
var usage int64
// manifest file size
usage += int64(db.manifest.FileSize())
// hint and wal file size
for fid, info := range db.manifest.wals {
usage += int64(info.wal.Size())
usage += db.hintSizeCache[fid]
}
// remove the un-used hint cache items
for fid := range db.hintSizeCache {
if _, exists := db.manifest.wals[fid]; !exists {
delete(db.hintSizeCache, fid)
}
}
return usage, nil
}