Line data Source code
1 : // Copyright 2018 The LevelDB-Go and Pebble Authors. All rights reserved. Use
2 : // of this source code is governed by a BSD-style license that can be found in
3 : // the LICENSE file.
4 :
5 : package sstable
6 :
7 : import (
8 : "bytes"
9 : "encoding/binary"
10 : "fmt"
11 : "math"
12 : "reflect"
13 : "sort"
14 : "unsafe"
15 :
16 : "github.com/cockroachdb/pebble/internal/intern"
17 : "github.com/cockroachdb/pebble/sstable/rowblk"
18 : )
19 :
20 : const propertiesBlockRestartInterval = math.MaxInt32
21 :
22 : var propTagMap = make(map[string]reflect.StructField)
23 : var propBoolTrue = []byte{'1'}
24 : var propBoolFalse = []byte{'0'}
25 :
26 : var propOffsetTagMap = make(map[uintptr]string)
27 :
28 1 : func generateTagMaps(t reflect.Type, indexPrefix []int) {
29 1 : for i := 0; i < t.NumField(); i++ {
30 1 : f := t.Field(i)
31 1 : if f.Type.Kind() == reflect.Struct {
32 1 : if tag := f.Tag.Get("prop"); i == 0 && tag == "pebble.embbeded_common_properties" {
33 1 : // CommonProperties struct embedded in Properties. Note that since
34 1 : // CommonProperties is placed at the top of properties we can use
35 1 : // the offsets of the fields within CommonProperties to determine
36 1 : // the offsets of those fields within Properties.
37 1 : generateTagMaps(f.Type, []int{i})
38 1 : continue
39 : }
40 0 : panic("pebble: unknown struct type in Properties")
41 : }
42 1 : if tag := f.Tag.Get("prop"); tag != "" {
43 1 : switch f.Type.Kind() {
44 1 : case reflect.Bool:
45 1 : case reflect.Uint32:
46 1 : case reflect.Uint64:
47 1 : case reflect.String:
48 0 : default:
49 0 : panic(fmt.Sprintf("unsupported property field type: %s %s", f.Name, f.Type))
50 : }
51 1 : if len(indexPrefix) > 0 {
52 1 : // Prepend the index prefix so that we can use FieldByIndex on the top-level struct.
53 1 : f.Index = append(indexPrefix[:len(indexPrefix):len(indexPrefix)], f.Index...)
54 1 : }
55 1 : propTagMap[tag] = f
56 1 : propOffsetTagMap[f.Offset] = tag
57 : }
58 : }
59 : }
60 :
61 1 : func init() {
62 1 : generateTagMaps(reflect.TypeOf(Properties{}), nil)
63 1 : }
64 :
65 : // CommonProperties holds properties for either a virtual or a physical sstable. This
66 : // can be used by code which doesn't care to make the distinction between physical
67 : // and virtual sstables properties.
68 : //
69 : // For virtual sstables, fields are constructed through extrapolation upon virtual
70 : // reader construction. See MakeVirtualReader for implementation details.
71 : //
72 : // NB: The values of these properties can affect correctness. For example,
73 : // if NumRangeKeySets == 0, but the sstable actually contains range keys, then
74 : // the iterators will behave incorrectly.
75 : type CommonProperties struct {
76 : // The number of entries in this table.
77 : NumEntries uint64 `prop:"rocksdb.num.entries"`
78 : // Total raw key size.
79 : RawKeySize uint64 `prop:"rocksdb.raw.key.size"`
80 : // Total raw value size.
81 : RawValueSize uint64 `prop:"rocksdb.raw.value.size"`
82 : // Total raw key size of point deletion tombstones. This value is comparable
83 : // to RawKeySize.
84 : RawPointTombstoneKeySize uint64 `prop:"pebble.raw.point-tombstone.key.size"`
85 : // Sum of the raw value sizes carried by point deletion tombstones
86 : // containing size estimates. See the DeleteSized key kind. This value is
87 : // comparable to Raw{Key,Value}Size.
88 : RawPointTombstoneValueSize uint64 `prop:"pebble.raw.point-tombstone.value.size"`
89 : // The number of point deletion entries ("tombstones") in this table that
90 : // carry a size hint indicating the size of the value the tombstone deletes.
91 : NumSizedDeletions uint64 `prop:"pebble.num.deletions.sized"`
92 : // The number of deletion entries in this table, including both point and
93 : // range deletions.
94 : NumDeletions uint64 `prop:"rocksdb.deleted.keys"`
95 : // The number of range deletions in this table.
96 : NumRangeDeletions uint64 `prop:"rocksdb.num.range-deletions"`
97 : // The number of RANGEKEYDELs in this table.
98 : NumRangeKeyDels uint64 `prop:"pebble.num.range-key-dels"`
99 : // The number of RANGEKEYSETs in this table.
100 : NumRangeKeySets uint64 `prop:"pebble.num.range-key-sets"`
101 : // Total size of value blocks and value index block. Only serialized if > 0.
102 : ValueBlocksSize uint64 `prop:"pebble.value-blocks.size"`
103 : // NumDataBlocks is the number of data blocks in this table.
104 : NumDataBlocks uint64 `prop:"rocksdb.num.data.blocks"`
105 : // NumTombstoneDenseBlocks is the number of data blocks in this table that
106 : // are considered tombstone-dense. See the TombstoneDenseBlocksRatio field
107 : // in manifest.TableStats for the criteria used to determine if a data
108 : // block is tombstone-dense.
109 : NumTombstoneDenseBlocks uint64 `prop:"pebble.num.tombstone-dense-blocks"`
110 : // The compression algorithm used to compress blocks.
111 : CompressionName string `prop:"rocksdb.compression"`
112 : // The compression options used to compress blocks.
113 : CompressionOptions string `prop:"rocksdb.compression_options"`
114 : }
115 :
116 : // String is only used for testing purposes.
117 0 : func (c *CommonProperties) String() string {
118 0 : var buf bytes.Buffer
119 0 : v := reflect.ValueOf(*c)
120 0 : loaded := make(map[uintptr]struct{})
121 0 : writeProperties(loaded, v, &buf)
122 0 : return buf.String()
123 0 : }
124 :
125 : // NumPointDeletions is the number of point deletions in the sstable. For virtual
126 : // sstables, this is an estimate.
127 1 : func (c *CommonProperties) NumPointDeletions() uint64 {
128 1 : return c.NumDeletions - c.NumRangeDeletions
129 1 : }
130 :
131 : // Properties holds the sstable property values. The properties are
132 : // automatically populated during sstable creation and load from the properties
133 : // meta block when an sstable is opened.
134 : type Properties struct {
135 : // CommonProperties needs to be at the top of the Properties struct so that the
136 : // offsets of the fields in CommonProperties match the offsets of the embedded
137 : // fields of CommonProperties in Properties.
138 : CommonProperties `prop:"pebble.embbeded_common_properties"`
139 :
140 : // The name of the comparer used in this table.
141 : ComparerName string `prop:"rocksdb.comparator"`
142 : // The total size of all data blocks.
143 : DataSize uint64 `prop:"rocksdb.data.size"`
144 : // The name of the filter policy used in this table. Empty if no filter
145 : // policy is used.
146 : FilterPolicyName string `prop:"rocksdb.filter.policy"`
147 : // The size of filter block.
148 : FilterSize uint64 `prop:"rocksdb.filter.size"`
149 : // Total number of index partitions if kTwoLevelIndexSearch is used.
150 : IndexPartitions uint64 `prop:"rocksdb.index.partitions"`
151 : // The size of index block.
152 : IndexSize uint64 `prop:"rocksdb.index.size"`
153 : // The index type. TODO(peter): add a more detailed description.
154 : IndexType uint32 `prop:"rocksdb.block.based.table.index.type"`
155 : // For formats >= TableFormatPebblev4, this is set to true if the obsolete
156 : // bit is strict for all the point keys.
157 : IsStrictObsolete bool `prop:"pebble.obsolete.is_strict"`
158 : // The name of the merger used in this table. Empty if no merger is used.
159 : MergerName string `prop:"rocksdb.merge.operator"`
160 : // The number of merge operands in the table.
161 : NumMergeOperands uint64 `prop:"rocksdb.merge.operands"`
162 : // The number of RANGEKEYUNSETs in this table.
163 : NumRangeKeyUnsets uint64 `prop:"pebble.num.range-key-unsets"`
164 : // The number of value blocks in this table. Only serialized if > 0.
165 : NumValueBlocks uint64 `prop:"pebble.num.value-blocks"`
166 : // The number of values stored in value blocks. Only serialized if > 0.
167 : NumValuesInValueBlocks uint64 `prop:"pebble.num.values.in.value-blocks"`
168 : // A comma separated list of names of the property collectors used in this
169 : // table.
170 : PropertyCollectorNames string `prop:"rocksdb.property.collectors"`
171 : // Total raw rangekey key size.
172 : RawRangeKeyKeySize uint64 `prop:"pebble.raw.range-key.key.size"`
173 : // Total raw rangekey value size.
174 : RawRangeKeyValueSize uint64 `prop:"pebble.raw.range-key.value.size"`
175 : // The total number of keys in this table that were pinned by open snapshots.
176 : SnapshotPinnedKeys uint64 `prop:"pebble.num.snapshot-pinned-keys"`
177 : // The cumulative bytes of keys in this table that were pinned by
178 : // open snapshots. This value is comparable to RawKeySize.
179 : SnapshotPinnedKeySize uint64 `prop:"pebble.raw.snapshot-pinned-keys.size"`
180 : // The cumulative bytes of values in this table that were pinned by
181 : // open snapshots. This value is comparable to RawValueSize.
182 : SnapshotPinnedValueSize uint64 `prop:"pebble.raw.snapshot-pinned-values.size"`
183 : // Size of the top-level index if kTwoLevelIndexSearch is used.
184 : TopLevelIndexSize uint64 `prop:"rocksdb.top-level.index.size"`
185 : // User collected properties. Currently, we only use them to store block
186 : // properties aggregated at the table level.
187 : UserProperties map[string]string
188 :
189 : // Loaded set indicating which fields have been loaded from disk. Indexed by
190 : // the field's byte offset within the struct
191 : // (reflect.StructField.Offset). Only set if the properties have been loaded
192 : // from a file. Only exported for testing purposes.
193 : Loaded map[uintptr]struct{}
194 : }
195 :
196 : // NumPointDeletions returns the number of point deletions in this table.
197 0 : func (p *Properties) NumPointDeletions() uint64 {
198 0 : return p.NumDeletions - p.NumRangeDeletions
199 0 : }
200 :
201 : // NumRangeKeys returns a count of the number of range keys in this table.
202 1 : func (p *Properties) NumRangeKeys() uint64 {
203 1 : return p.NumRangeKeyDels + p.NumRangeKeySets + p.NumRangeKeyUnsets
204 1 : }
205 :
206 0 : func writeProperties(loaded map[uintptr]struct{}, v reflect.Value, buf *bytes.Buffer) {
207 0 : vt := v.Type()
208 0 : for i := 0; i < v.NumField(); i++ {
209 0 : ft := vt.Field(i)
210 0 : if ft.Type.Kind() == reflect.Struct {
211 0 : // Embedded struct within the properties.
212 0 : writeProperties(loaded, v.Field(i), buf)
213 0 : continue
214 : }
215 0 : tag := ft.Tag.Get("prop")
216 0 : if tag == "" {
217 0 : continue
218 : }
219 :
220 0 : f := v.Field(i)
221 0 : // TODO(peter): Use f.IsZero() when we can rely on go1.13.
222 0 : if zero := reflect.Zero(f.Type()); zero.Interface() == f.Interface() {
223 0 : // Skip printing of zero values which were not loaded from disk.
224 0 : if _, ok := loaded[ft.Offset]; !ok {
225 0 : continue
226 : }
227 : }
228 :
229 0 : fmt.Fprintf(buf, "%s: ", tag)
230 0 : switch ft.Type.Kind() {
231 0 : case reflect.Bool:
232 0 : fmt.Fprintf(buf, "%t\n", f.Bool())
233 0 : case reflect.Uint32:
234 0 : fmt.Fprintf(buf, "%d\n", f.Uint())
235 0 : case reflect.Uint64:
236 0 : fmt.Fprintf(buf, "%d\n", f.Uint())
237 0 : case reflect.String:
238 0 : fmt.Fprintf(buf, "%s\n", f.String())
239 0 : default:
240 0 : panic("not reached")
241 : }
242 : }
243 : }
244 :
245 0 : func (p *Properties) String() string {
246 0 : var buf bytes.Buffer
247 0 : v := reflect.ValueOf(*p)
248 0 : writeProperties(p.Loaded, v, &buf)
249 0 :
250 0 : // Write the UserProperties.
251 0 : keys := make([]string, 0, len(p.UserProperties))
252 0 : for key := range p.UserProperties {
253 0 : keys = append(keys, key)
254 0 : }
255 0 : sort.Strings(keys)
256 0 : for _, key := range keys {
257 0 : fmt.Fprintf(&buf, "%s: %s\n", key, p.UserProperties[key])
258 0 : }
259 0 : return buf.String()
260 : }
261 :
262 1 : func (p *Properties) load(b []byte, deniedUserProperties map[string]struct{}) error {
263 1 : i, err := rowblk.NewRawIter(bytes.Compare, b)
264 1 : if err != nil {
265 0 : return err
266 0 : }
267 1 : p.Loaded = make(map[uintptr]struct{})
268 1 : v := reflect.ValueOf(p).Elem()
269 1 :
270 1 : for valid := i.First(); valid; valid = i.Next() {
271 1 : if f, ok := propTagMap[string(i.Key().UserKey)]; ok {
272 1 : p.Loaded[f.Offset] = struct{}{}
273 1 : field := v.FieldByIndex(f.Index)
274 1 : switch f.Type.Kind() {
275 0 : case reflect.Bool:
276 0 : field.SetBool(bytes.Equal(i.Value(), propBoolTrue))
277 1 : case reflect.Uint32:
278 1 : field.SetUint(uint64(binary.LittleEndian.Uint32(i.Value())))
279 1 : case reflect.Uint64:
280 1 : n, _ := binary.Uvarint(i.Value())
281 1 : field.SetUint(n)
282 1 : case reflect.String:
283 1 : field.SetString(intern.Bytes(i.Value()))
284 0 : default:
285 0 : panic("not reached")
286 : }
287 1 : continue
288 : }
289 1 : if p.UserProperties == nil {
290 1 : p.UserProperties = make(map[string]string)
291 1 : }
292 :
293 1 : if _, denied := deniedUserProperties[string(i.Key().UserKey)]; !denied {
294 1 : p.UserProperties[intern.Bytes(i.Key().UserKey)] = string(i.Value())
295 1 : }
296 : }
297 1 : return nil
298 : }
299 :
300 0 : func (p *Properties) saveBool(m map[string][]byte, offset uintptr, value bool) {
301 0 : tag := propOffsetTagMap[offset]
302 0 : if value {
303 0 : m[tag] = propBoolTrue
304 0 : } else {
305 0 : m[tag] = propBoolFalse
306 0 : }
307 : }
308 :
309 1 : func (p *Properties) saveUint32(m map[string][]byte, offset uintptr, value uint32) {
310 1 : var buf [4]byte
311 1 : binary.LittleEndian.PutUint32(buf[:], value)
312 1 : m[propOffsetTagMap[offset]] = buf[:]
313 1 : }
314 :
315 0 : func (p *Properties) saveUint64(m map[string][]byte, offset uintptr, value uint64) {
316 0 : var buf [8]byte
317 0 : binary.LittleEndian.PutUint64(buf[:], value)
318 0 : m[propOffsetTagMap[offset]] = buf[:]
319 0 : }
320 :
321 : var _ = (*Properties).saveUint64
322 :
323 1 : func (p *Properties) saveUvarint(m map[string][]byte, offset uintptr, value uint64) {
324 1 : var buf [10]byte
325 1 : n := binary.PutUvarint(buf[:], value)
326 1 : m[propOffsetTagMap[offset]] = buf[:n]
327 1 : }
328 :
329 1 : func (p *Properties) saveString(m map[string][]byte, offset uintptr, value string) {
330 1 : m[propOffsetTagMap[offset]] = []byte(value)
331 1 : }
332 :
333 1 : func (p *Properties) save(tblFormat TableFormat, w *rowblk.Writer) {
334 1 : m := make(map[string][]byte)
335 1 : for k, v := range p.UserProperties {
336 1 : m[k] = []byte(v)
337 1 : }
338 :
339 1 : if p.ComparerName != "" {
340 1 : p.saveString(m, unsafe.Offsetof(p.ComparerName), p.ComparerName)
341 1 : }
342 1 : if p.CompressionName != "" {
343 1 : p.saveString(m, unsafe.Offsetof(p.CompressionName), p.CompressionName)
344 1 : }
345 1 : if p.CompressionOptions != "" {
346 1 : p.saveString(m, unsafe.Offsetof(p.CompressionOptions), p.CompressionOptions)
347 1 : }
348 1 : p.saveUvarint(m, unsafe.Offsetof(p.DataSize), p.DataSize)
349 1 : if p.FilterPolicyName != "" {
350 1 : p.saveString(m, unsafe.Offsetof(p.FilterPolicyName), p.FilterPolicyName)
351 1 : }
352 1 : p.saveUvarint(m, unsafe.Offsetof(p.FilterSize), p.FilterSize)
353 1 : if p.IndexPartitions != 0 {
354 1 : p.saveUvarint(m, unsafe.Offsetof(p.IndexPartitions), p.IndexPartitions)
355 1 : p.saveUvarint(m, unsafe.Offsetof(p.TopLevelIndexSize), p.TopLevelIndexSize)
356 1 : }
357 1 : p.saveUvarint(m, unsafe.Offsetof(p.IndexSize), p.IndexSize)
358 1 : p.saveUint32(m, unsafe.Offsetof(p.IndexType), p.IndexType)
359 1 : if p.IsStrictObsolete {
360 0 : p.saveBool(m, unsafe.Offsetof(p.IsStrictObsolete), p.IsStrictObsolete)
361 0 : }
362 1 : if p.MergerName != "" {
363 1 : p.saveString(m, unsafe.Offsetof(p.MergerName), p.MergerName)
364 1 : }
365 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumDataBlocks), p.NumDataBlocks)
366 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumEntries), p.NumEntries)
367 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumDeletions), p.NumDeletions)
368 1 : if p.NumSizedDeletions > 0 {
369 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumSizedDeletions), p.NumSizedDeletions)
370 1 : }
371 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumMergeOperands), p.NumMergeOperands)
372 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumRangeDeletions), p.NumRangeDeletions)
373 1 : // NB: We only write out some properties for Pebble formats. This isn't
374 1 : // strictly necessary because unrecognized properties are interpreted as
375 1 : // user-defined properties, however writing them prevents byte-for-byte
376 1 : // equivalence with RocksDB files that some of our testing requires.
377 1 : if p.RawPointTombstoneKeySize > 0 && tblFormat >= TableFormatPebblev1 {
378 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawPointTombstoneKeySize), p.RawPointTombstoneKeySize)
379 1 : }
380 1 : if p.RawPointTombstoneValueSize > 0 {
381 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawPointTombstoneValueSize), p.RawPointTombstoneValueSize)
382 1 : }
383 1 : if p.NumRangeKeys() > 0 {
384 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumRangeKeyDels), p.NumRangeKeyDels)
385 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumRangeKeySets), p.NumRangeKeySets)
386 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumRangeKeyUnsets), p.NumRangeKeyUnsets)
387 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawRangeKeyKeySize), p.RawRangeKeyKeySize)
388 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawRangeKeyValueSize), p.RawRangeKeyValueSize)
389 1 : }
390 1 : if p.NumValueBlocks > 0 {
391 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumValueBlocks), p.NumValueBlocks)
392 1 : }
393 1 : if p.NumValuesInValueBlocks > 0 {
394 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumValuesInValueBlocks), p.NumValuesInValueBlocks)
395 1 : }
396 1 : if p.PropertyCollectorNames != "" {
397 1 : p.saveString(m, unsafe.Offsetof(p.PropertyCollectorNames), p.PropertyCollectorNames)
398 1 : }
399 1 : if p.SnapshotPinnedKeys > 0 {
400 1 : p.saveUvarint(m, unsafe.Offsetof(p.SnapshotPinnedKeys), p.SnapshotPinnedKeys)
401 1 : p.saveUvarint(m, unsafe.Offsetof(p.SnapshotPinnedKeySize), p.SnapshotPinnedKeySize)
402 1 : p.saveUvarint(m, unsafe.Offsetof(p.SnapshotPinnedValueSize), p.SnapshotPinnedValueSize)
403 1 : }
404 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawKeySize), p.RawKeySize)
405 1 : p.saveUvarint(m, unsafe.Offsetof(p.RawValueSize), p.RawValueSize)
406 1 : if p.ValueBlocksSize > 0 {
407 1 : p.saveUvarint(m, unsafe.Offsetof(p.ValueBlocksSize), p.ValueBlocksSize)
408 1 : }
409 1 : if p.NumTombstoneDenseBlocks != 0 {
410 1 : p.saveUvarint(m, unsafe.Offsetof(p.NumTombstoneDenseBlocks), p.NumTombstoneDenseBlocks)
411 1 : }
412 :
413 1 : if tblFormat < TableFormatPebblev1 {
414 0 : m["rocksdb.column.family.id"] = binary.AppendUvarint([]byte(nil), math.MaxInt32)
415 0 : m["rocksdb.fixed.key.length"] = []byte{0x00}
416 0 : m["rocksdb.index.key.is.user.key"] = []byte{0x00}
417 0 : m["rocksdb.index.value.is.delta.encoded"] = []byte{0x00}
418 0 : m["rocksdb.oldest.key.time"] = []byte{0x00}
419 0 : m["rocksdb.creation.time"] = []byte{0x00}
420 0 : m["rocksdb.format.version"] = []byte{0x00}
421 0 : }
422 :
423 1 : keys := make([]string, 0, len(m))
424 1 : for key := range m {
425 1 : keys = append(keys, key)
426 1 : }
427 1 : sort.Strings(keys)
428 1 : for _, key := range keys {
429 1 : w.AddRawString(key, m[key])
430 1 : }
431 : }
|