forked from cockroachdb/pebble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commit_test.go
425 lines (392 loc) · 12 KB
/
commit_test.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
// Copyright 2018 The LevelDB-Go and Pebble Authors. All rights reserved. Use
// of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
package pebble
import (
"encoding/binary"
"fmt"
"io"
"math/rand/v2"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/cockroachdb/pebble/internal/arenaskl"
"github.com/cockroachdb/pebble/internal/base"
"github.com/cockroachdb/pebble/internal/invariants"
"github.com/cockroachdb/pebble/record"
"github.com/cockroachdb/pebble/vfs"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/require"
)
type testCommitEnv struct {
logSeqNum base.AtomicSeqNum
visibleSeqNum base.AtomicSeqNum
writeCount atomic.Uint64
applyBuf struct {
sync.Mutex
buf []uint64
}
queueSemChan chan struct{}
}
func (e *testCommitEnv) env() commitEnv {
return commitEnv{
logSeqNum: &e.logSeqNum,
visibleSeqNum: &e.visibleSeqNum,
apply: e.apply,
write: e.write,
}
}
func (e *testCommitEnv) apply(b *Batch, mem *memTable) error {
e.applyBuf.Lock()
e.applyBuf.buf = append(e.applyBuf.buf, uint64(b.SeqNum()))
e.applyBuf.Unlock()
return nil
}
func (e *testCommitEnv) write(b *Batch, wg *sync.WaitGroup, _ *error) (*memTable, error) {
e.writeCount.Add(1)
if wg != nil {
wg.Done()
<-e.queueSemChan
}
return nil, nil
}
func TestCommitQueue(t *testing.T) {
var q commitQueue
var batches [16]Batch
for i := range batches {
q.enqueue(&batches[i])
}
if b := q.dequeueApplied(); b != nil {
t.Fatalf("unexpectedly dequeued batch: %p", b)
}
batches[1].applied.Store(true)
if b := q.dequeueApplied(); b != nil {
t.Fatalf("unexpectedly dequeued batch: %p", b)
}
for i := range batches {
batches[i].applied.Store(true)
if b := q.dequeueApplied(); b != &batches[i] {
t.Fatalf("%d: expected batch %p, but found %p", i, &batches[i], b)
}
}
if b := q.dequeueApplied(); b != nil {
t.Fatalf("unexpectedly dequeued batch: %p", b)
}
}
func TestCommitPipeline(t *testing.T) {
var e testCommitEnv
p := newCommitPipeline(e.env())
n := 10000
if invariants.RaceEnabled {
// Under race builds we have to limit the concurrency or we hit the
// following error:
//
// race: limit on 8128 simultaneously alive goroutines is exceeded, dying
n = 1000
}
var wg sync.WaitGroup
wg.Add(n)
for i := 0; i < n; i++ {
go func(i int) {
defer wg.Done()
var b Batch
_ = b.Set([]byte(fmt.Sprint(i)), nil, nil)
_ = p.Commit(&b, false, false)
}(i)
}
wg.Wait()
if s := e.writeCount.Load(); uint64(n) != s {
t.Fatalf("expected %d written batches, but found %d", n, s)
}
if n != len(e.applyBuf.buf) {
t.Fatalf("expected %d written batches, but found %d",
n, len(e.applyBuf.buf))
}
if s := e.logSeqNum.Load(); base.SeqNum(n) != s {
t.Fatalf("expected %d, but found %d", n, s)
}
if s := e.visibleSeqNum.Load(); base.SeqNum(n) != s {
t.Fatalf("expected %d, but found %d", n, s)
}
}
func TestCommitPipelineSync(t *testing.T) {
n := 10000
if invariants.RaceEnabled {
// Under race builds we have to limit the concurrency or we hit the
// following error:
//
// race: limit on 8128 simultaneously alive goroutines is exceeded, dying
n = 1000
}
for _, noSyncWait := range []bool{false, true} {
t.Run(fmt.Sprintf("no-sync-wait=%t", noSyncWait), func(t *testing.T) {
var e testCommitEnv
p := newCommitPipeline(e.env())
e.queueSemChan = p.logSyncQSem
var wg sync.WaitGroup
wg.Add(n)
for i := 0; i < n; i++ {
go func(i int) {
defer wg.Done()
var b Batch
require.NoError(t, b.Set([]byte(fmt.Sprint(i)), nil, nil))
require.NoError(t, p.Commit(&b, true, noSyncWait))
if noSyncWait {
require.NoError(t, b.SyncWait())
}
}(i)
}
wg.Wait()
if s := e.writeCount.Load(); uint64(n) != s {
t.Fatalf("expected %d written batches, but found %d", n, s)
}
if n != len(e.applyBuf.buf) {
t.Fatalf("expected %d written batches, but found %d",
n, len(e.applyBuf.buf))
}
if s := e.logSeqNum.Load(); base.SeqNum(n) != s {
t.Fatalf("expected %d, but found %d", n, s)
}
if s := e.visibleSeqNum.Load(); base.SeqNum(n) != s {
t.Fatalf("expected %d, but found %d", n, s)
}
})
}
}
func TestCommitPipelineAllocateSeqNum(t *testing.T) {
var e testCommitEnv
p := newCommitPipeline(e.env())
const n = 10
var wg sync.WaitGroup
wg.Add(n)
var prepareCount atomic.Uint64
var applyCount atomic.Uint64
for i := 1; i <= n; i++ {
go func(i int) {
defer wg.Done()
p.AllocateSeqNum(i, func(_ base.SeqNum) {
prepareCount.Add(1)
}, func(_ base.SeqNum) {
applyCount.Add(1)
})
}(i)
}
wg.Wait()
if s := prepareCount.Load(); n != s {
t.Fatalf("expected %d prepares, but found %d", n, s)
}
if s := applyCount.Load(); n != s {
t.Fatalf("expected %d applies, but found %d", n, s)
}
// AllocateSeqNum always returns a non-zero sequence number causing the
// values we see to be offset from 1.
const total = 1 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
if s := e.logSeqNum.Load(); total != s {
t.Fatalf("expected %d, but found %d", total, s)
}
if s := e.visibleSeqNum.Load(); total != s {
t.Fatalf("expected %d, but found %d", total, s)
}
}
type syncDelayFile struct {
vfs.File
done chan struct{}
}
func (f *syncDelayFile) Sync() error {
<-f.done
return nil
}
func TestCommitPipelineWALClose(t *testing.T) {
// This test stresses the edge case of N goroutines blocked in the
// commitPipeline waiting for the log to sync when we concurrently decide to
// rotate and close the log.
mem := vfs.NewMem()
f, err := mem.Create("test-wal", vfs.WriteCategoryUnspecified)
require.NoError(t, err)
// syncDelayFile will block on the done channel befor returning from Sync
// call.
sf := &syncDelayFile{
File: f,
done: make(chan struct{}),
}
// A basic commitEnv which writes to a WAL.
var wal *record.LogWriter
var walDone sync.WaitGroup
testEnv := commitEnv{
logSeqNum: new(base.AtomicSeqNum),
visibleSeqNum: new(base.AtomicSeqNum),
apply: func(b *Batch, mem *memTable) error {
// At this point, we've called SyncRecord but the sync is blocked.
walDone.Done()
return nil
},
write: func(b *Batch, syncWG *sync.WaitGroup, syncErr *error) (*memTable, error) {
_, err := wal.SyncRecord(b.data, syncWG, syncErr)
return nil, err
},
}
p := newCommitPipeline(testEnv)
wal = record.NewLogWriter(sf, 0 /* logNum */, record.LogWriterConfig{
WALFsyncLatency: prometheus.NewHistogram(prometheus.HistogramOpts{}),
QueueSemChan: p.logSyncQSem,
})
// Launch N (commitConcurrency) goroutines which each create a batch and
// commit it with sync==true. Because of the syncDelayFile, none of these
// operations can complete until syncDelayFile.done is closed.
errCh := make(chan error, cap(p.commitQueueSem))
walDone.Add(cap(errCh))
for i := 0; i < cap(errCh); i++ {
go func(i int) {
b := &Batch{}
if err := b.LogData([]byte("foo"), nil); err != nil {
errCh <- err
return
}
errCh <- p.Commit(b, true /* sync */, false)
}(i)
}
// Wait for all of the WAL writes to queue up. This ensures we don't violate
// the concurrency requirements of LogWriter, and also ensures all of the WAL
// writes are queued.
walDone.Wait()
close(sf.done)
// Close the WAL. A "queue is full" panic means that something is broken.
require.NoError(t, wal.Close())
for i := 0; i < cap(errCh); i++ {
require.NoError(t, <-errCh)
}
}
// TestCommitPipelineLogDataSeqNum ensures committing a KV and a LogData
// concurrently never publishes the KV's sequence number before it's been fully
// applied to the memtable (which would violate the consistency of iterators
// to which that sequence number is visible).
//
// A LogData batch reads the 'next sequence number' without incrementing it,
// effectively sharing the sequence number with the next key committed. It may
// finish applying to the memtable before the KV that shares its sequence
// number. However, sequence number publishing ratchets the visible sequence
// number to the batch's first seqnum + number of batch entries ..., so for e.g.
// with first seqnum = 5 and number of entries = 3, it will ratchet to 8. This
// means all seqnums strictly less than 8 are visible. So a LogData batch which
// also grabbed the first seqnum = 5 before this batch, will ratchet to 5 + 0,
// which is a noop.
func TestCommitPipelineLogDataSeqNum(t *testing.T) {
var testEnv commitEnv
testEnv = commitEnv{
logSeqNum: new(base.AtomicSeqNum),
visibleSeqNum: new(base.AtomicSeqNum),
apply: func(b *Batch, mem *memTable) error {
// Jitter a delay in memtable application to get test coverage of
// varying interleavings of which batch completes memtable
// application first.
time.Sleep(time.Duration(rand.Float64() * 20.0 * float64(time.Millisecond)))
// Ensure that our sequence number is not published before we've
// returned from apply.
//
// If b is the Set("foo","bar") batch, the LogData batch sharing the
// sequence number may have already entered commitPipeline.publish,
// but the sequence number it publishes should not be high enough to
// make this batch's KV visible.
//
// It may set visibleSeqNum = b.SeqNum(), but seqnum X is not
// considered visible until the visibleSeqNum is >X.
require.False(t, base.Visible(
b.SeqNum(), // Seqnum of the first KV in the batch b
testEnv.visibleSeqNum.Load(), // Snapshot seqnum
base.SeqNumMax, // Indexed batch "seqnum" (unused here)
))
return nil
},
write: func(b *Batch, syncWG *sync.WaitGroup, syncErr *error) (*memTable, error) {
if syncWG != nil {
syncWG.Done()
}
return nil, nil
},
}
testEnv.logSeqNum.Store(base.SeqNumStart)
testEnv.visibleSeqNum.Store(base.SeqNumStart)
p := newCommitPipeline(testEnv)
var wg sync.WaitGroup
wg.Add(2)
go func() {
defer wg.Done()
b := &Batch{}
require.NoError(t, b.Set([]byte("foo"), []byte("bar"), nil))
require.NoError(t, p.Commit(b, false /* sync */, false))
}()
go func() {
defer wg.Done()
b := &Batch{}
require.NoError(t, b.LogData([]byte("foo"), nil))
require.NoError(t, p.Commit(b, false /* sync */, false))
}()
wg.Wait()
}
func BenchmarkCommitPipeline(b *testing.B) {
for _, noSyncWait := range []bool{false, true} {
for _, parallelism := range []int{1, 2, 4, 8, 16, 32, 64, 128} {
b.Run(fmt.Sprintf("no-sync-wait=%t/parallel=%d", noSyncWait, parallelism),
func(b *testing.B) {
b.SetParallelism(parallelism)
mem := newMemTable(memTableOptions{})
var wal *record.LogWriter
nullCommitEnv := commitEnv{
logSeqNum: new(base.AtomicSeqNum),
visibleSeqNum: new(base.AtomicSeqNum),
apply: func(b *Batch, mem *memTable) error {
err := mem.apply(b, b.SeqNum())
if err != nil {
return err
}
mem.writerUnref()
return nil
},
write: func(b *Batch, syncWG *sync.WaitGroup, syncErr *error) (*memTable, error) {
for {
err := mem.prepare(b)
if err == arenaskl.ErrArenaFull {
mem = newMemTable(memTableOptions{})
continue
}
if err != nil {
return nil, err
}
break
}
_, err := wal.SyncRecord(b.data, syncWG, syncErr)
return mem, err
},
}
p := newCommitPipeline(nullCommitEnv)
wal = record.NewLogWriter(io.Discard, 0, /* logNum */
record.LogWriterConfig{
WALFsyncLatency: prometheus.NewHistogram(prometheus.HistogramOpts{}),
QueueSemChan: p.logSyncQSem,
})
const keySize = 8
b.SetBytes(2 * keySize)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
rng := rand.New(rand.NewPCG(0, uint64(time.Now().UnixNano())))
buf := make([]byte, keySize)
for pb.Next() {
batch := newBatch(nil)
binary.BigEndian.PutUint64(buf, rng.Uint64())
batch.Set(buf, buf, nil)
if err := p.Commit(batch, true /* sync */, noSyncWait); err != nil {
b.Fatal(err)
}
if noSyncWait {
if err := batch.SyncWait(); err != nil {
b.Fatal(err)
}
}
batch.Close()
}
})
})
}
}
}