-
Notifications
You must be signed in to change notification settings - Fork 452
/
format_major_version_test.go
226 lines (198 loc) · 8.63 KB
/
format_major_version_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
// Copyright 2021 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 (
"fmt"
"testing"
"github.com/cockroachdb/pebble/sstable"
"github.com/cockroachdb/pebble/vfs"
"github.com/cockroachdb/pebble/vfs/atomicfs"
"github.com/stretchr/testify/require"
)
// TestFormatMajorVersionValues checks that we don't accidentally change the
// numbers of format versions.
func TestFormatMajorVersionStableValues(t *testing.T) {
require.Equal(t, FormatDefault, FormatMajorVersion(0))
require.Equal(t, FormatFlushableIngest, FormatMajorVersion(13))
require.Equal(t, FormatPrePebblev1MarkedCompacted, FormatMajorVersion(14))
require.Equal(t, FormatDeleteSizedAndObsolete, FormatMajorVersion(15))
require.Equal(t, FormatVirtualSSTables, FormatMajorVersion(16))
require.Equal(t, FormatSyntheticPrefixSuffix, FormatMajorVersion(17))
require.Equal(t, FormatFlushableIngestExcises, FormatMajorVersion(18))
// When we add a new version, we should add a check for the new version in
// addition to updating these expected values.
require.Equal(t, FormatNewest, FormatMajorVersion(19))
require.Equal(t, internalFormatNewest, FormatMajorVersion(19))
}
func TestFormatMajorVersion_MigrationDefined(t *testing.T) {
for v := FormatMinSupported; v <= FormatNewest; v++ {
if _, ok := formatMajorVersionMigrations[v]; !ok {
t.Errorf("format major version %d has no migration defined", v)
}
}
}
func TestRatchetFormat(t *testing.T) {
fs := vfs.NewMem()
d, err := Open("", (&Options{FS: fs}).WithFSDefaults())
require.NoError(t, err)
require.NoError(t, d.Set([]byte("foo"), []byte("bar"), Sync))
require.Equal(t, FormatFlushableIngest, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatPrePebblev1MarkedCompacted))
require.Equal(t, FormatPrePebblev1MarkedCompacted, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatDeleteSizedAndObsolete))
require.Equal(t, FormatDeleteSizedAndObsolete, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatVirtualSSTables))
require.Equal(t, FormatVirtualSSTables, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatSyntheticPrefixSuffix))
require.Equal(t, FormatSyntheticPrefixSuffix, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatFlushableIngestExcises))
require.Equal(t, FormatFlushableIngestExcises, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(FormatColumnarBlocks))
require.Equal(t, FormatColumnarBlocks, d.FormatMajorVersion())
require.NoError(t, d.Close())
// If we Open the database again, leaving the default format, the
// database should Open using the persisted FormatNewest.
d, err = Open("", (&Options{FS: fs, Logger: testLogger{t}}).WithFSDefaults())
require.NoError(t, err)
require.Equal(t, internalFormatNewest, d.FormatMajorVersion())
require.NoError(t, d.Close())
// Move the marker to a version that does not exist.
m, _, err := atomicfs.LocateMarker(fs, "", formatVersionMarkerName)
require.NoError(t, err)
require.NoError(t, m.Move("999999"))
require.NoError(t, m.Close())
_, err = Open("", (&Options{
FS: fs,
FormatMajorVersion: FormatMinSupported,
}).WithFSDefaults())
require.Error(t, err)
require.EqualError(t, err, `pebble: database "" written in unknown format major version 999999`)
}
func testBasicDB(d *DB) error {
key := []byte("a")
value := []byte("b")
if err := d.Set(key, value, nil); err != nil {
return err
}
if err := d.Flush(); err != nil {
return err
}
if err := d.Compact(nil, []byte("\xff"), false); err != nil {
return err
}
iter, _ := d.NewIter(nil)
for valid := iter.First(); valid; valid = iter.Next() {
}
if err := iter.Close(); err != nil {
return err
}
return nil
}
func TestFormatMajorVersions(t *testing.T) {
for vers := FormatMinSupported; vers <= FormatNewest; vers++ {
t.Run(fmt.Sprintf("vers=%03d", vers), func(t *testing.T) {
fs := vfs.NewCrashableMem()
opts := (&Options{
FS: fs,
FormatMajorVersion: vers,
Logger: testLogger{t},
}).WithFSDefaults()
// Create a database at this format major version and perform
// some very basic operations.
d, err := Open("", opts)
require.NoError(t, err)
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
// Re-open the database at this format major version, and again
// perform some basic operations.
d, err = Open("", opts)
require.NoError(t, err)
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
t.Run("upgrade-at-open", func(t *testing.T) {
for upgradeVers := vers + 1; upgradeVers <= FormatNewest; upgradeVers++ {
t.Run(fmt.Sprintf("upgrade-vers=%03d", upgradeVers), func(t *testing.T) {
// We use vfs.MemFS's CrashClone to perform an upgrade without
// affecting the original filesystem.
opts := opts.Clone()
opts.FS = fs.CrashClone(vfs.CrashCloneCfg{UnsyncedDataPercent: 0})
// Re-open the database, passing a higher format
// major version in the Options to automatically
// ratchet the format major version. Ensure some
// basic operations pass.
opts.FormatMajorVersion = upgradeVers
d, err = Open("", opts)
require.NoError(t, err)
require.Equal(t, upgradeVers, d.FormatMajorVersion())
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
// Re-open to ensure the upgrade persisted.
d, err = Open("", opts)
require.NoError(t, err)
require.Equal(t, upgradeVers, d.FormatMajorVersion())
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
})
}
})
t.Run("upgrade-while-open", func(t *testing.T) {
for upgradeVers := vers + 1; upgradeVers <= FormatNewest; upgradeVers++ {
t.Run(fmt.Sprintf("upgrade-vers=%03d", upgradeVers), func(t *testing.T) {
// Ensure the previous tests don't overwrite our
// options.
require.Equal(t, vers, opts.FormatMajorVersion)
// We use vfs.MemFS's CrashClone to perform an upgrade without
// affecting the original filesystem.
opts := opts.Clone()
opts.FS = fs.CrashClone(vfs.CrashCloneCfg{UnsyncedDataPercent: 0})
// Re-open the database, still at the current format
// major version. Perform some basic operations,
// ratchet the format version up, and perform
// additional basic operations.
d, err = Open("", opts)
require.NoError(t, err)
require.NoError(t, testBasicDB(d))
require.Equal(t, vers, d.FormatMajorVersion())
require.NoError(t, d.RatchetFormatMajorVersion(upgradeVers))
require.Equal(t, upgradeVers, d.FormatMajorVersion())
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
// Re-open to ensure the upgrade persisted.
d, err = Open("", opts)
require.NoError(t, err)
require.Equal(t, upgradeVers, d.FormatMajorVersion())
require.NoError(t, testBasicDB(d))
require.NoError(t, d.Close())
})
}
})
})
}
}
func TestFormatMajorVersions_TableFormat(t *testing.T) {
// NB: This test is intended to validate the mapping between every
// FormatMajorVersion and sstable.TableFormat exhaustively. This serves as a
// sanity check that new versions have a corresponding mapping. The test
// fixture is intentionally verbose.
m := map[FormatMajorVersion][2]sstable.TableFormat{
FormatDefault: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev3},
FormatFlushableIngest: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev3},
FormatPrePebblev1MarkedCompacted: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev3},
FormatDeleteSizedAndObsolete: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev4},
FormatVirtualSSTables: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev4},
FormatSyntheticPrefixSuffix: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev4},
FormatFlushableIngestExcises: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev4},
FormatColumnarBlocks: {sstable.TableFormatPebblev1, sstable.TableFormatPebblev5},
}
// Valid versions.
for fmv := FormatMinSupported; fmv <= internalFormatNewest; fmv++ {
got := [2]sstable.TableFormat{fmv.MinTableFormat(), fmv.MaxTableFormat()}
require.Equalf(t, m[fmv], got, "got %s; want %s", got, m[fmv])
require.True(t, got[0] <= got[1] /* min <= max */)
}
// Invalid versions.
fmv := internalFormatNewest + 1
require.Panics(t, func() { _ = fmv.MaxTableFormat() })
require.Panics(t, func() { _ = fmv.MinTableFormat() })
}