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 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
|
/*
* Copyright 2017 Dgraph Labs, Inc. and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package table
import (
"crypto/aes"
"encoding/binary"
"fmt"
"io"
"math"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"sync"
"sync/atomic"
"unsafe"
"github.com/golang/protobuf/proto"
"github.com/golang/snappy"
"github.com/pkg/errors"
"github.com/dgraph-io/badger/v2/options"
"github.com/dgraph-io/badger/v2/pb"
"github.com/dgraph-io/badger/v2/y"
"github.com/dgraph-io/ristretto"
"github.com/dgraph-io/ristretto/z"
)
const fileSuffix = ".sst"
const intSize = int(unsafe.Sizeof(int(0)))
// 1 word = 8 bytes
// sizeOfOffsetStruct is the size of pb.BlockOffset
const sizeOfOffsetStruct int64 = 3*8 + // key array take 3 words
1*8 + // offset and len takes 1 word
3*8 + // XXX_unrecognized array takes 3 word.
1*8 // so far 7 words, in order to round the slab we're adding one more word.
// Options contains configurable options for Table/Builder.
type Options struct {
// Options for Opening/Building Table.
// ChkMode is the checksum verification mode for Table.
ChkMode options.ChecksumVerificationMode
// LoadingMode is the mode to be used for loading Table.
LoadingMode options.FileLoadingMode
// Options for Table builder.
// BloomFalsePositive is the false positive probabiltiy of bloom filter.
BloomFalsePositive float64
// BlockSize is the size of each block inside SSTable in bytes.
BlockSize int
// DataKey is the key used to decrypt the encrypted text.
DataKey *pb.DataKey
// Compression indicates the compression algorithm used for block compression.
Compression options.CompressionType
BlockCache *ristretto.Cache
IndexCache *ristretto.Cache
// ZSTDCompressionLevel is the ZSTD compression level used for compressing blocks.
ZSTDCompressionLevel int
// When LoadBloomsOnOpen is set, bloom filters will be loaded while opening
// the table. Otherwise, they will be loaded lazily when they're accessed.
LoadBloomsOnOpen bool
}
// TableInterface is useful for testing.
type TableInterface interface {
Smallest() []byte
Biggest() []byte
DoesNotHave(hash uint64) bool
}
// Table represents a loaded table file with the info we have about it.
type Table struct {
sync.Mutex
fd *os.File // Own fd.
tableSize int // Initialized in OpenTable, using fd.Stat().
bfLock sync.Mutex
blockOffset []*pb.BlockOffset
ref int32 // For file garbage collection. Atomic.
bf *z.Bloom // Nil if index cache in enabled.
mmap []byte // Memory mapped.
// The following are initialized once and const.
smallest, biggest []byte // Smallest and largest keys (with timestamps).
id uint64 // file id, part of filename
Checksum []byte
// Stores the total size of key-values stored in this table (including the size on vlog).
estimatedSize uint64
indexStart int
indexLen int
IsInmemory bool // Set to true if the table is on level 0 and opened in memory.
opt *Options
noOfBlocks int // Total number of blocks.
}
// CompressionType returns the compression algorithm used for block compression.
func (t *Table) CompressionType() options.CompressionType {
return t.opt.Compression
}
// IncrRef increments the refcount (having to do with whether the file should be deleted)
func (t *Table) IncrRef() {
atomic.AddInt32(&t.ref, 1)
}
// DecrRef decrements the refcount and possibly deletes the table
func (t *Table) DecrRef() error {
newRef := atomic.AddInt32(&t.ref, -1)
if newRef == 0 {
// We can safely delete this file, because for all the current files, we always have
// at least one reference pointing to them.
// It's necessary to delete windows files.
if t.opt.LoadingMode == options.MemoryMap {
if err := y.Munmap(t.mmap); err != nil {
return err
}
t.mmap = nil
}
// fd can be nil if the table belongs to L0 and it is opened in memory. See
// OpenTableInMemory method.
if t.fd == nil {
return nil
}
if err := t.fd.Truncate(0); err != nil {
// This is very important to let the FS know that the file is deleted.
return err
}
filename := t.fd.Name()
if err := t.fd.Close(); err != nil {
return err
}
if err := os.Remove(filename); err != nil {
return err
}
// Delete all blocks from the cache.
for i := 0; i < t.noOfBlocks; i++ {
t.opt.BlockCache.Del(t.blockCacheKey(i))
}
// Delete bloom filter and indices from the cache.
t.opt.IndexCache.Del(t.blockOffsetsCacheKey())
t.opt.IndexCache.Del(t.bfCacheKey())
}
return nil
}
type block struct {
offset int
data []byte
checksum []byte
entriesIndexStart int // start index of entryOffsets list
entryOffsets []uint32
chkLen int // checksum length
}
func (b *block) size() int64 {
return int64(3*intSize /* Size of the offset, entriesIndexStart and chkLen */ +
cap(b.data) + cap(b.checksum) + cap(b.entryOffsets)*4)
}
func (b block) verifyCheckSum() error {
cs := &pb.Checksum{}
if err := proto.Unmarshal(b.checksum, cs); err != nil {
return y.Wrapf(err, "unable to unmarshal checksum for block")
}
return y.VerifyChecksum(b.data, cs)
}
// OpenTable assumes file has only one table and opens it. Takes ownership of fd upon function
// entry. Returns a table with one reference count on it (decrementing which may delete the file!
// -- consider t.Close() instead). The fd has to writeable because we call Truncate on it before
// deleting. Checksum for all blocks of table is verified based on value of chkMode.
func OpenTable(fd *os.File, opts Options) (*Table, error) {
fileInfo, err := fd.Stat()
if err != nil {
// It's OK to ignore fd.Close() errs in this function because we have only read
// from the file.
_ = fd.Close()
return nil, y.Wrap(err)
}
filename := fileInfo.Name()
id, ok := ParseFileID(filename)
if !ok {
_ = fd.Close()
return nil, errors.Errorf("Invalid filename: %s", filename)
}
t := &Table{
fd: fd,
ref: 1, // Caller is given one reference.
id: id,
opt: &opts,
IsInmemory: false,
}
t.tableSize = int(fileInfo.Size())
switch opts.LoadingMode {
case options.LoadToRAM:
if _, err := t.fd.Seek(0, io.SeekStart); err != nil {
return nil, err
}
t.mmap = make([]byte, t.tableSize)
n, err := t.fd.Read(t.mmap)
if err != nil {
// It's OK to ignore fd.Close() error because we have only read from the file.
_ = t.fd.Close()
return nil, y.Wrapf(err, "Failed to load file into RAM")
}
if n != t.tableSize {
return nil, errors.Errorf("Failed to read all bytes from the file."+
"Bytes in file: %d Bytes actually Read: %d", t.tableSize, n)
}
case options.MemoryMap:
t.mmap, err = y.Mmap(fd, false, fileInfo.Size())
if err != nil {
_ = fd.Close()
return nil, y.Wrapf(err, "Unable to map file: %q", fileInfo.Name())
}
case options.FileIO:
t.mmap = nil
default:
panic(fmt.Sprintf("Invalid loading mode: %v", opts.LoadingMode))
}
if err := t.initBiggestAndSmallest(); err != nil {
return nil, errors.Wrapf(err, "failed to initialize table")
}
if opts.ChkMode == options.OnTableRead || opts.ChkMode == options.OnTableAndBlockRead {
if err := t.VerifyChecksum(); err != nil {
_ = fd.Close()
return nil, errors.Wrapf(err, "failed to verify checksum")
}
}
return t, nil
}
// OpenInMemoryTable is similar to OpenTable but it opens a new table from the provided data.
// OpenInMemoryTable is used for L0 tables.
func OpenInMemoryTable(data []byte, id uint64, opt *Options) (*Table, error) {
opt.LoadingMode = options.LoadToRAM
t := &Table{
ref: 1, // Caller is given one reference.
opt: opt,
mmap: data,
tableSize: len(data),
IsInmemory: true,
id: id, // It is important that each table gets a unique ID.
}
if err := t.initBiggestAndSmallest(); err != nil {
return nil, err
}
return t, nil
}
func (t *Table) initBiggestAndSmallest() error {
var err error
var ko *pb.BlockOffset
if ko, err = t.initIndex(); err != nil {
return errors.Wrapf(err, "failed to read index.")
}
t.smallest = ko.Key
it2 := t.NewIterator(true)
defer it2.Close()
it2.Rewind()
if !it2.Valid() {
return errors.Wrapf(it2.err, "failed to initialize biggest for table %s", t.Filename())
}
t.biggest = it2.Key()
return nil
}
// Close closes the open table. (Releases resources back to the OS.)
func (t *Table) Close() error {
if t.opt.LoadingMode == options.MemoryMap {
if err := y.Munmap(t.mmap); err != nil {
return err
}
t.mmap = nil
}
if t.fd == nil {
return nil
}
return t.fd.Close()
}
func (t *Table) read(off, sz int) ([]byte, error) {
if len(t.mmap) > 0 {
if len(t.mmap[off:]) < sz {
return nil, y.ErrEOF
}
return t.mmap[off : off+sz], nil
}
res := make([]byte, sz)
nbr, err := t.fd.ReadAt(res, int64(off))
y.NumReads.Add(1)
y.NumBytesRead.Add(int64(nbr))
return res, err
}
func (t *Table) readNoFail(off, sz int) []byte {
res, err := t.read(off, sz)
y.Check(err)
return res
}
// initIndex reads the index and populate the necessary table fields and returns
// first block offset
func (t *Table) initIndex() (*pb.BlockOffset, error) {
readPos := t.tableSize
// Read checksum len from the last 4 bytes.
readPos -= 4
buf := t.readNoFail(readPos, 4)
checksumLen := int(y.BytesToU32(buf))
if checksumLen < 0 {
return nil, errors.New("checksum length less than zero. Data corrupted")
}
// Read checksum.
expectedChk := &pb.Checksum{}
readPos -= checksumLen
buf = t.readNoFail(readPos, checksumLen)
if err := proto.Unmarshal(buf, expectedChk); err != nil {
return nil, err
}
// Read index size from the footer.
readPos -= 4
buf = t.readNoFail(readPos, 4)
t.indexLen = int(y.BytesToU32(buf))
// Read index.
readPos -= t.indexLen
t.indexStart = readPos
data := t.readNoFail(readPos, t.indexLen)
if err := y.VerifyChecksum(data, expectedChk); err != nil {
return nil, y.Wrapf(err, "failed to verify checksum for table: %s", t.Filename())
}
index, err := t.readTableIndex()
if err != nil {
return nil, err
}
t.estimatedSize = index.EstimatedSize
t.noOfBlocks = len(index.Offsets)
// No cache
if t.opt.IndexCache == nil {
if t.opt.LoadBloomsOnOpen {
bf, err := z.JSONUnmarshal(index.BloomFilter)
if err != nil {
return nil,
errors.Wrapf(err, "failed to unmarshal bloomfilter for table:%d", t.id)
}
// Keep blooms in memory.
t.bfLock.Lock()
t.bf = bf
t.bfLock.Unlock()
}
// Keep block offsets in memory since there is no cache.
t.blockOffset = index.Offsets
}
// We don't need to put anything in the indexCache here. Table.Open will
// create an iterator and that iterator will push the indices in cache.
return index.Offsets[0], nil
}
// blockOffsets returns block offsets of this table.
func (t *Table) blockOffsets() []*pb.BlockOffset {
if t.opt.IndexCache == nil {
return t.blockOffset
}
if val, ok := t.opt.IndexCache.Get(t.blockOffsetsCacheKey()); ok && val != nil {
return val.([]*pb.BlockOffset)
}
index, err := t.readTableIndex()
y.Check(err)
t.opt.IndexCache.Set(
t.blockOffsetsCacheKey(),
index.Offsets,
calculateOffsetsSize(index.Offsets))
return index.Offsets
}
// calculateOffsetsSize returns the size of *pb.BlockOffset array
func calculateOffsetsSize(offsets []*pb.BlockOffset) int64 {
totalSize := sizeOfOffsetStruct * int64(len(offsets))
for _, ko := range offsets {
// add key size.
totalSize += int64(cap(ko.Key))
// add XXX_unrecognized size.
totalSize += int64(cap(ko.XXX_unrecognized))
}
// Add three words for array size.
return totalSize + 3*8
}
func (t *Table) block(idx int) (*block, error) {
y.AssertTruef(idx >= 0, "idx=%d", idx)
if idx >= t.noOfBlocks {
return nil, errors.New("block out of index")
}
if t.opt.BlockCache != nil {
key := t.blockCacheKey(idx)
blk, ok := t.opt.BlockCache.Get(key)
if ok && blk != nil {
return blk.(*block), nil
}
}
// Read the block index if it's nil
ko := t.blockOffsets()[idx]
blk := &block{
offset: int(ko.Offset),
}
var err error
if blk.data, err = t.read(blk.offset, int(ko.Len)); err != nil {
return nil, errors.Wrapf(err,
"failed to read from file: %s at offset: %d, len: %d", t.fd.Name(), blk.offset, ko.Len)
}
if t.shouldDecrypt() {
// Decrypt the block if it is encrypted.
if blk.data, err = t.decrypt(blk.data); err != nil {
return nil, err
}
}
blk.data, err = t.decompressData(blk.data)
if err != nil {
return nil, errors.Wrapf(err,
"failed to decode compressed data in file: %s at offset: %d, len: %d",
t.fd.Name(), blk.offset, ko.Len)
}
// Read meta data related to block.
readPos := len(blk.data) - 4 // First read checksum length.
blk.chkLen = int(y.BytesToU32(blk.data[readPos : readPos+4]))
// Checksum length greater than block size could happen if the table was compressed and
// it was opened with an incorrect compression algorithm (or the data was corrupted).
if blk.chkLen > len(blk.data) {
return nil, errors.New("invalid checksum length. Either the data is" +
"corrupted or the table options are incorrectly set")
}
// Read checksum and store it
readPos -= blk.chkLen
blk.checksum = blk.data[readPos : readPos+blk.chkLen]
// Move back and read numEntries in the block.
readPos -= 4
numEntries := int(y.BytesToU32(blk.data[readPos : readPos+4]))
entriesIndexStart := readPos - (numEntries * 4)
entriesIndexEnd := entriesIndexStart + numEntries*4
blk.entryOffsets = y.BytesToU32Slice(blk.data[entriesIndexStart:entriesIndexEnd])
blk.entriesIndexStart = entriesIndexStart
// Drop checksum and checksum length.
// The checksum is calculated for actual data + entry index + index length
blk.data = blk.data[:readPos+4]
// Verify checksum on if checksum verification mode is OnRead on OnStartAndRead.
if t.opt.ChkMode == options.OnBlockRead || t.opt.ChkMode == options.OnTableAndBlockRead {
if err = blk.verifyCheckSum(); err != nil {
return nil, err
}
}
if t.opt.BlockCache != nil {
key := t.blockCacheKey(idx)
t.opt.BlockCache.Set(key, blk, blk.size())
}
return blk, nil
}
// bfCacheKey returns the cache key for bloom filter. Bloom filters are stored in index cache.
func (t *Table) bfCacheKey() []byte {
y.AssertTrue(t.id < math.MaxUint32)
buf := make([]byte, 6)
// Without the "bf" prefix, we will have conflict with the blockCacheKey.
buf[0] = 'b'
buf[1] = 'f'
binary.BigEndian.PutUint32(buf[2:], uint32(t.id))
return buf
}
// blockCacheKey is used to store blocks in the block cache.
func (t *Table) blockCacheKey(idx int) []byte {
y.AssertTrue(t.id < math.MaxUint32)
y.AssertTrue(uint32(idx) < math.MaxUint32)
buf := make([]byte, 8)
// Assume t.ID does not overflow uint32.
binary.BigEndian.PutUint32(buf[:4], uint32(t.ID()))
binary.BigEndian.PutUint32(buf[4:], uint32(idx))
return buf
}
// blockOffsetsCacheKey returns the cache key for block offsets. blockOffsets
// are stored in the index cache.
func (t *Table) blockOffsetsCacheKey() uint64 {
return t.id
}
// EstimatedSize returns the total size of key-values stored in this table (including the
// disk space occupied on the value log).
func (t *Table) EstimatedSize() uint64 { return t.estimatedSize }
// Size is its file size in bytes
func (t *Table) Size() int64 { return int64(t.tableSize) }
// Smallest is its smallest key, or nil if there are none
func (t *Table) Smallest() []byte { return t.smallest }
// Biggest is its biggest key, or nil if there are none
func (t *Table) Biggest() []byte { return t.biggest }
// Filename is NOT the file name. Just kidding, it is.
func (t *Table) Filename() string { return t.fd.Name() }
// ID is the table's ID number (used to make the file name).
func (t *Table) ID() uint64 { return t.id }
// DoesNotHave returns true if (but not "only if") the table does not have the key hash.
// It does a bloom filter lookup.
func (t *Table) DoesNotHave(hash uint64) bool {
// Return fast if the cache is absent.
if t.opt.IndexCache == nil {
t.bfLock.Lock()
if t.bf == nil {
y.AssertTrue(!t.opt.LoadBloomsOnOpen)
// Load bloomfilter into memory since the cache is absent.
t.bf, _ = t.readBloomFilter()
}
t.bfLock.Unlock()
return !t.bf.Has(hash)
}
// Check if the bloom filter exists in the cache.
if bf, ok := t.opt.IndexCache.Get(t.bfCacheKey()); bf != nil && ok {
return !bf.(*z.Bloom).Has(hash)
}
bf, sz := t.readBloomFilter()
t.opt.IndexCache.Set(t.bfCacheKey(), bf, int64(sz))
return !bf.Has(hash)
}
// readBloomFilter reads the bloom filter from the SST and returns its length
// along with the bloom filter.
func (t *Table) readBloomFilter() (*z.Bloom, int) {
// Read bloom filter from the SST.
index, err := t.readTableIndex()
y.Check(err)
bf, err := z.JSONUnmarshal(index.BloomFilter)
y.Check(err)
return bf, len(index.BloomFilter)
}
// readTableIndex reads table index from the sst and returns its pb format.
func (t *Table) readTableIndex() (*pb.TableIndex, error) {
data := t.readNoFail(t.indexStart, t.indexLen)
index := pb.TableIndex{}
var err error
// Decrypt the table index if it is encrypted.
if t.shouldDecrypt() {
if data, err = t.decrypt(data); err != nil {
return nil, y.Wrapf(err,
"Error while decrypting table index for the table %d in readTableIndex", t.id)
}
}
y.Check(proto.Unmarshal(data, &index))
return &index, nil
}
// VerifyChecksum verifies checksum for all blocks of table. This function is called by
// OpenTable() function. This function is also called inside levelsController.VerifyChecksum().
func (t *Table) VerifyChecksum() error {
for i, os := range t.blockOffsets() {
b, err := t.block(i)
if err != nil {
return y.Wrapf(err, "checksum validation failed for table: %s, block: %d, offset:%d",
t.Filename(), i, os.Offset)
}
// OnBlockRead or OnTableAndBlockRead, we don't need to call verify checksum
// on block, verification would be done while reading block itself.
if !(t.opt.ChkMode == options.OnBlockRead || t.opt.ChkMode == options.OnTableAndBlockRead) {
if err = b.verifyCheckSum(); err != nil {
return y.Wrapf(err,
"checksum validation failed for table: %s, block: %d, offset:%d",
t.Filename(), i, os.Offset)
}
}
}
return nil
}
// shouldDecrypt tells whether to decrypt or not. We decrypt only if the datakey exist
// for the table.
func (t *Table) shouldDecrypt() bool {
return t.opt.DataKey != nil
}
// KeyID returns data key id.
func (t *Table) KeyID() uint64 {
if t.opt.DataKey != nil {
return t.opt.DataKey.KeyId
}
// By default it's 0, if it is plain text.
return 0
}
// decrypt decrypts the given data. It should be called only after checking shouldDecrypt.
func (t *Table) decrypt(data []byte) ([]byte, error) {
// Last BlockSize bytes of the data is the IV.
iv := data[len(data)-aes.BlockSize:]
// Rest all bytes are data.
data = data[:len(data)-aes.BlockSize]
return y.XORBlock(data, t.opt.DataKey.Data, iv)
}
// ParseFileID reads the file id out of a filename.
func ParseFileID(name string) (uint64, bool) {
name = path.Base(name)
if !strings.HasSuffix(name, fileSuffix) {
return 0, false
}
// suffix := name[len(fileSuffix):]
name = strings.TrimSuffix(name, fileSuffix)
id, err := strconv.Atoi(name)
if err != nil {
return 0, false
}
y.AssertTrue(id >= 0)
return uint64(id), true
}
// IDToFilename does the inverse of ParseFileID
func IDToFilename(id uint64) string {
return fmt.Sprintf("%06d", id) + fileSuffix
}
// NewFilename should be named TableFilepath -- it combines the dir with the ID to make a table
// filepath.
func NewFilename(id uint64, dir string) string {
return filepath.Join(dir, IDToFilename(id))
}
// decompressData decompresses the given data.
func (t *Table) decompressData(data []byte) ([]byte, error) {
switch t.opt.Compression {
case options.None:
return data, nil
case options.Snappy:
return snappy.Decode(nil, data)
case options.ZSTD:
return y.ZSTDDecompress(nil, data)
}
return nil, errors.New("Unsupported compression type")
}
|