forked from cockroachdb/pebble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_iter_test.go
501 lines (478 loc) · 11.9 KB
/
get_iter_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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
// 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 (
"context"
"strings"
"testing"
"github.com/cockroachdb/errors"
"github.com/cockroachdb/pebble/internal/base"
"github.com/cockroachdb/pebble/internal/manifest"
"github.com/cockroachdb/pebble/internal/testkeys"
"github.com/cockroachdb/pebble/sstable"
)
func TestGetIter(t *testing.T) {
// testTable is a table to insert into a version.
// Each element of data is a string of the form "internalKey value".
type testTable struct {
level int
fileNum FileNum
data []string
}
testCases := []struct {
description string
// badOrdering is whether this test case has a table ordering violation.
badOrdering bool
// tables are the tables to populate the version with.
tables []testTable
// queries are the queries to run against the version. Each element has
// the form "internalKey wantedValue". The internalKey is passed to the
// version.get method, wantedValue may be "ErrNotFound" if the query
// should return that error.
queries []string
}{
{
description: "empty: an empty version",
queries: []string{
"abc.SEPARATOR.101 ErrNotFound",
},
},
{
description: "single-0: one level-0 table",
tables: []testTable{
{
level: 0,
fileNum: 10,
data: []string{
"the.SET.101 a",
"cat.SET.102 b",
"on_.SET.103 c",
"the.SET.104 d",
"mat.SET.105 e",
"the.DEL.106 ",
"the.MERGE.107 g",
},
},
},
queries: []string{
"aaa.SEPARATOR.105 ErrNotFound",
"cat.SEPARATOR.105 b",
"hat.SEPARATOR.105 ErrNotFound",
"mat.SEPARATOR.105 e",
"the.SEPARATOR.108 g",
"the.SEPARATOR.107 g",
"the.SEPARATOR.106 ErrNotFound",
"the.SEPARATOR.105 d",
"the.SEPARATOR.104 d",
"the.SEPARATOR.104 d",
"the.SEPARATOR.103 a",
"the.SEPARATOR.102 a",
"the.SEPARATOR.101 a",
"the.SEPARATOR.100 ErrNotFound",
"zzz.SEPARATOR.105 ErrNotFound",
},
},
{
description: "triple-0: three level-0 tables",
tables: []testTable{
{
level: 0,
fileNum: 10,
data: []string{
"the.SET.101 a",
"cat.SET.102 b",
"on_.SET.103 c",
"the.SET.104 d",
"mat.SET.105 e",
"the.DEL.106 ",
"the.SET.107 g",
},
},
{
level: 0,
fileNum: 11,
data: []string{
"awk.SET.111 w",
"cat.SET.112 x",
"man.SET.113 y",
"sed.SET.114 z",
},
},
{
level: 0,
fileNum: 12,
data: []string{
"the.DEL.121 ",
"cat.DEL.122 ",
"man.DEL.123 ",
"was.SET.124 D",
"not.SET.125 E",
"the.SET.126 F",
"man.SET.127 G",
},
},
},
queries: []string{
"aaa.SEPARATOR.105 ErrNotFound",
"awk.SEPARATOR.135 w",
"awk.SEPARATOR.125 w",
"awk.SEPARATOR.115 w",
"awk.SEPARATOR.105 ErrNotFound",
"cat.SEPARATOR.135 ErrNotFound",
"cat.SEPARATOR.125 ErrNotFound",
"cat.SEPARATOR.115 x",
"cat.SEPARATOR.105 b",
"man.SEPARATOR.135 G",
"man.SEPARATOR.125 ErrNotFound",
"man.SEPARATOR.115 y",
"man.SEPARATOR.105 ErrNotFound",
"on_.SEPARATOR.135 c",
"on_.SEPARATOR.125 c",
"on_.SEPARATOR.115 c",
"on_.SEPARATOR.105 c",
"the.SEPARATOR.135 F",
"the.SEPARATOR.127 F",
"the.SEPARATOR.126 F",
"the.SEPARATOR.125 ErrNotFound",
"the.SEPARATOR.122 ErrNotFound",
"the.SEPARATOR.121 ErrNotFound",
"the.SEPARATOR.120 g",
"the.SEPARATOR.115 g",
"the.SEPARATOR.114 g",
"the.SEPARATOR.111 g",
"the.SEPARATOR.110 g",
"the.SEPARATOR.108 g",
"the.SEPARATOR.107 g",
"the.SEPARATOR.106 ErrNotFound",
"the.SEPARATOR.105 d",
"the.SEPARATOR.104 d",
"the.SEPARATOR.104 d",
"the.SEPARATOR.103 a",
"the.SEPARATOR.102 a",
"the.SEPARATOR.101 a",
"the.SEPARATOR.100 ErrNotFound",
"zzz.SEPARATOR.105 ErrNotFound",
},
},
{
description: "complex: many tables at many levels",
tables: []testTable{
{
level: 0,
fileNum: 50,
data: []string{
"alfalfa__.SET.501 p1",
"asparagus.SET.502 p2",
"cabbage__.DEL.503 ",
"spinach__.MERGE.504 p3",
},
},
{
level: 0,
fileNum: 51,
data: []string{
"asparagus.SET.511 q1",
"asparagus.SET.512 q2",
"asparagus.SET.513 q3",
"beans____.SET.514 q4",
"broccoli_.SET.515 q5",
"cabbage__.SET.516 q6",
"celery___.SET.517 q7",
"spinach__.MERGE.518 q8",
},
},
{
level: 1,
fileNum: 40,
data: []string{
"alfalfa__.SET.410 r1",
"asparagus.SET.420 r2",
"arugula__.SET.430 r3",
},
},
{
level: 1,
fileNum: 41,
data: []string{
"beans____.SET.411 s1",
"beans____.SET.421 s2",
"bokchoy__.DEL.431 ",
"broccoli_.SET.441 s4",
},
},
{
level: 1,
fileNum: 42,
data: []string{
"cabbage__.SET.412 t1",
"corn_____.DEL.422 ",
"spinach__.MERGE.432 t2",
},
},
{
level: 2,
fileNum: 30,
data: []string{
"alfalfa__.SET.310 u1",
"bokchoy__.SET.320 u2",
"celery___.SET.330 u3",
"corn_____.SET.340 u4",
"spinach__.MERGE.350 u5",
},
},
},
queries: []string{
"a________.SEPARATOR.999 ErrNotFound",
"alfalfa__.SEPARATOR.520 p1",
"alfalfa__.SEPARATOR.510 p1",
"alfalfa__.SEPARATOR.500 r1",
"alfalfa__.SEPARATOR.400 u1",
"alfalfa__.SEPARATOR.300 ErrNotFound",
"asparagus.SEPARATOR.520 q3",
"asparagus.SEPARATOR.510 p2",
"asparagus.SEPARATOR.500 r2",
"asparagus.SEPARATOR.400 ErrNotFound",
"asparagus.SEPARATOR.300 ErrNotFound",
"arugula__.SEPARATOR.520 r3",
"arugula__.SEPARATOR.510 r3",
"arugula__.SEPARATOR.500 r3",
"arugula__.SEPARATOR.400 ErrNotFound",
"arugula__.SEPARATOR.300 ErrNotFound",
"beans____.SEPARATOR.520 q4",
"beans____.SEPARATOR.510 s2",
"beans____.SEPARATOR.500 s2",
"beans____.SEPARATOR.400 ErrNotFound",
"beans____.SEPARATOR.300 ErrNotFound",
"bokchoy__.SEPARATOR.520 ErrNotFound",
"bokchoy__.SEPARATOR.510 ErrNotFound",
"bokchoy__.SEPARATOR.500 ErrNotFound",
"bokchoy__.SEPARATOR.400 u2",
"bokchoy__.SEPARATOR.300 ErrNotFound",
"broccoli_.SEPARATOR.520 q5",
"broccoli_.SEPARATOR.510 s4",
"broccoli_.SEPARATOR.500 s4",
"broccoli_.SEPARATOR.400 ErrNotFound",
"broccoli_.SEPARATOR.300 ErrNotFound",
"cabbage__.SEPARATOR.520 q6",
"cabbage__.SEPARATOR.510 ErrNotFound",
"cabbage__.SEPARATOR.500 t1",
"cabbage__.SEPARATOR.400 ErrNotFound",
"cabbage__.SEPARATOR.300 ErrNotFound",
"celery___.SEPARATOR.520 q7",
"celery___.SEPARATOR.510 u3",
"celery___.SEPARATOR.500 u3",
"celery___.SEPARATOR.400 u3",
"celery___.SEPARATOR.300 ErrNotFound",
"corn_____.SEPARATOR.520 ErrNotFound",
"corn_____.SEPARATOR.510 ErrNotFound",
"corn_____.SEPARATOR.500 ErrNotFound",
"corn_____.SEPARATOR.400 u4",
"corn_____.SEPARATOR.300 ErrNotFound",
"d________.SEPARATOR.999 ErrNotFound",
"spinach__.SEPARATOR.999 u5t2p3q8",
"spinach__.SEPARATOR.518 u5t2p3q8",
"spinach__.SEPARATOR.517 u5t2p3",
"spinach__.SEPARATOR.504 u5t2p3",
"spinach__.SEPARATOR.503 u5t2",
"spinach__.SEPARATOR.432 u5t2",
"spinach__.SEPARATOR.431 u5",
"spinach__.SEPARATOR.350 u5",
"spinach__.SEPARATOR.349 ErrNotFound",
},
},
{
description: "broken invariants 0: non-increasing level 0 sequence numbers",
badOrdering: true,
tables: []testTable{
{
level: 0,
fileNum: 19,
data: []string{
"a.SET.101 a",
"b.SET.102 b",
},
},
{
level: 0,
fileNum: 20,
data: []string{
"c.SET.101 c",
},
},
},
},
{
description: "broken invariants 1: non-increasing level 0 sequence numbers",
badOrdering: true,
tables: []testTable{
{
level: 0,
fileNum: 19,
data: []string{
"a.SET.101 a",
"b.SET.102 b",
},
},
{
level: 0,
fileNum: 20,
data: []string{
"c.SET.100 c",
"d.SET.101 d",
},
},
},
},
{
description: "broken invariants 2: matching level 0 sequence numbers, considered acceptable",
badOrdering: false,
tables: []testTable{
{
level: 0,
fileNum: 19,
data: []string{
"a.SET.101 a",
},
},
{
level: 0,
fileNum: 20,
data: []string{
"a.SET.101 a",
},
},
},
},
{
description: "broken invariants 3: level non-0 overlapping internal key ranges",
badOrdering: true,
tables: []testTable{
{
level: 5,
fileNum: 11,
data: []string{
"bat.SET.101 xxx",
"dog.SET.102 xxx",
},
},
{
level: 5,
fileNum: 12,
data: []string{
"cow.SET.103 xxx",
"pig.SET.104 xxx",
},
},
},
},
}
cmp := testkeys.Comparer
for _, tc := range testCases {
desc := tc.description[:strings.Index(tc.description, ":")]
// m is a map from file numbers to DBs.
m := map[FileNum]*memTable{}
newIter := func(
_ context.Context, file *manifest.FileMetadata, _ *IterOptions, _ internalIterOpts, _ iterKinds,
) (iterSet, error) {
d, ok := m[file.FileNum]
if !ok {
return iterSet{}, errors.New("no such file")
}
return iterSet{point: d.newIter(nil)}, nil
}
var files [numLevels][]*fileMetadata
for _, tt := range tc.tables {
d := newMemTable(memTableOptions{})
m[tt.fileNum] = d
meta := &fileMetadata{
FileNum: tt.fileNum,
}
meta.InitPhysicalBacking()
for i, datum := range tt.data {
s := strings.Split(datum, " ")
ikey := base.ParseInternalKey(s[0])
err := d.set(ikey, []byte(s[1]))
if err != nil {
t.Fatalf("desc=%q: memtable Set: %v", desc, err)
}
meta.ExtendPointKeyBounds(cmp.Compare, ikey, ikey)
if i == 0 {
meta.SmallestSeqNum = ikey.SeqNum()
meta.LargestSeqNum = ikey.SeqNum()
} else {
if meta.SmallestSeqNum > ikey.SeqNum() {
meta.SmallestSeqNum = ikey.SeqNum()
}
if meta.LargestSeqNum < ikey.SeqNum() {
meta.LargestSeqNum = ikey.SeqNum()
}
}
meta.LargestSeqNumAbsolute = meta.LargestSeqNum
}
files[tt.level] = append(files[tt.level], meta)
}
v := manifest.NewVersion(cmp, 10<<20, files)
err := v.CheckOrdering()
if tc.badOrdering && err == nil {
t.Errorf("desc=%q: want bad ordering, got nil error", desc)
continue
} else if !tc.badOrdering && err != nil {
t.Errorf("desc=%q: bad ordering: %v", desc, err)
continue
}
get := func(v *version, ikey InternalKey) ([]byte, error) {
var buf struct {
dbi Iterator
get getIter
}
get := &buf.get
get.comparer = testkeys.Comparer
get.newIters = newIter
get.key = ikey.UserKey
get.prefix = ikey.UserKey[:testkeys.Comparer.Split(ikey.UserKey)]
get.l0 = v.L0SublevelFiles
get.version = v
get.snapshot = ikey.SeqNum() + 1
get.iterOpts = IterOptions{
CategoryAndQoS: sstable.CategoryAndQoS{
Category: "pebble-get",
QoSLevel: sstable.LatencySensitiveQoSLevel,
},
logger: testLogger{t},
snapshotForHideObsoletePoints: get.snapshot,
}
i := &buf.dbi
i.comparer = *testkeys.Comparer
i.merge = DefaultMerger.Merge
i.iter = get
defer i.Close()
if !i.First() {
err := i.Error()
if err != nil {
return nil, err
}
return nil, ErrNotFound
}
return i.Value(), nil
}
for _, query := range tc.queries {
s := strings.Split(query, " ")
ikey := base.ParseInternalKey(s[0])
value, err := get(v, ikey)
got, want := "", s[1]
if err != nil {
if err != ErrNotFound {
t.Errorf("desc=%q: query=%q: %v", desc, s[0], err)
continue
}
got = "ErrNotFound"
} else {
got = string(value)
}
if got != want {
t.Errorf("desc=%q: query=%q: got %q, want %q", desc, s[0], got, want)
}
}
}
}