2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/slice.h"
|
|
|
|
#include "rocksdb/status.h"
|
2013-09-02 08:23:40 +02:00
|
|
|
#include "rocksdb/options.h"
|
2013-10-29 01:54:09 +01:00
|
|
|
#include "rocksdb/table.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
class Block;
|
|
|
|
class RandomAccessFile;
|
|
|
|
struct ReadOptions;
|
|
|
|
|
|
|
|
// BlockHandle is a pointer to the extent of a file that stores a data
|
|
|
|
// block or a meta block.
|
|
|
|
class BlockHandle {
|
|
|
|
public:
|
|
|
|
BlockHandle();
|
2013-12-05 00:43:09 +01:00
|
|
|
BlockHandle(uint64_t offset, uint64_t size);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// The offset of the block in the file.
|
|
|
|
uint64_t offset() const { return offset_; }
|
|
|
|
void set_offset(uint64_t offset) { offset_ = offset; }
|
|
|
|
|
|
|
|
// The size of the stored block
|
|
|
|
uint64_t size() const { return size_; }
|
|
|
|
void set_size(uint64_t size) { size_ = size; }
|
|
|
|
|
|
|
|
void EncodeTo(std::string* dst) const;
|
|
|
|
Status DecodeFrom(Slice* input);
|
|
|
|
|
2013-12-05 00:43:09 +01:00
|
|
|
// if the block handle's offset and size are both "0", we will view it
|
|
|
|
// as a null block handle that points to no where.
|
|
|
|
bool IsNull() const {
|
|
|
|
return offset_ == 0 && size_ == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const BlockHandle& NullBlockHandle() {
|
|
|
|
return kNullBlockHandle;
|
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Maximum encoding length of a BlockHandle
|
|
|
|
enum { kMaxEncodedLength = 10 + 10 };
|
|
|
|
|
|
|
|
private:
|
2013-12-05 00:43:09 +01:00
|
|
|
uint64_t offset_ = 0;
|
|
|
|
uint64_t size_ = 0;
|
|
|
|
|
|
|
|
static const BlockHandle kNullBlockHandle;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Footer encapsulates the fixed information stored at the tail
|
|
|
|
// end of every table file.
|
|
|
|
class Footer {
|
|
|
|
public:
|
2013-12-05 00:09:41 +01:00
|
|
|
// @table_magic_number serves two purposes:
|
|
|
|
// 1. Identify different types of the tables.
|
|
|
|
// 2. Help us to identify if a given file is a valid sst.
|
|
|
|
Footer(uint64_t table_magic_number) :
|
|
|
|
kTableMagicNumber(table_magic_number) {
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// The block handle for the metaindex block of the table
|
|
|
|
const BlockHandle& metaindex_handle() const { return metaindex_handle_; }
|
|
|
|
void set_metaindex_handle(const BlockHandle& h) { metaindex_handle_ = h; }
|
|
|
|
|
|
|
|
// The block handle for the index block of the table
|
|
|
|
const BlockHandle& index_handle() const {
|
|
|
|
return index_handle_;
|
|
|
|
}
|
|
|
|
void set_index_handle(const BlockHandle& h) {
|
|
|
|
index_handle_ = h;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EncodeTo(std::string* dst) const;
|
|
|
|
Status DecodeFrom(Slice* input);
|
|
|
|
|
|
|
|
// Encoded length of a Footer. Note that the serialization of a
|
|
|
|
// Footer will always occupy exactly this many bytes. It consists
|
|
|
|
// of two block handles and a magic number.
|
|
|
|
enum {
|
|
|
|
kEncodedLength = 2*BlockHandle::kMaxEncodedLength + 8
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
BlockHandle metaindex_handle_;
|
|
|
|
BlockHandle index_handle_;
|
2013-12-05 00:09:41 +01:00
|
|
|
const uint64_t kTableMagicNumber;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2013-12-05 01:35:48 +01:00
|
|
|
// Read the footer from file
|
|
|
|
Status ReadFooterFromFile(RandomAccessFile* file,
|
|
|
|
uint64_t file_size,
|
|
|
|
Footer* footer);
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// 1-byte type + 32-bit crc
|
|
|
|
static const size_t kBlockTrailerSize = 5;
|
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
struct BlockContents {
|
|
|
|
Slice data; // Actual contents of data
|
|
|
|
bool cachable; // True iff data can be cached
|
|
|
|
bool heap_allocated; // True iff caller should delete[] data.data()
|
2013-09-02 08:23:40 +02:00
|
|
|
CompressionType compression_type;
|
2012-04-17 17:36:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Read the block identified by "handle" from "file". On failure
|
|
|
|
// return non-OK. On success fill *result and return OK.
|
2013-04-23 08:47:56 +02:00
|
|
|
extern Status ReadBlockContents(RandomAccessFile* file,
|
|
|
|
const ReadOptions& options,
|
|
|
|
const BlockHandle& handle,
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
BlockContents* result,
|
2013-09-02 08:23:40 +02:00
|
|
|
Env* env,
|
|
|
|
bool do_uncompress);
|
|
|
|
|
|
|
|
// The 'data' points to the raw block contents read in from file.
|
|
|
|
// This method allocates a new heap buffer and the raw block
|
|
|
|
// contents are uncompresed into this buffer. This buffer is
|
|
|
|
// returned via 'result' and it is upto the caller to
|
|
|
|
// free this buffer.
|
|
|
|
extern Status UncompressBlockContents(const char* data,
|
|
|
|
size_t n,
|
|
|
|
BlockContents* result);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// Implementation details follow. Clients should ignore,
|
|
|
|
|
|
|
|
inline BlockHandle::BlockHandle()
|
2013-12-05 00:43:09 +01:00
|
|
|
: BlockHandle(~static_cast<uint64_t>(0),
|
|
|
|
~static_cast<uint64_t>(0)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline BlockHandle::BlockHandle(uint64_t offset, uint64_t size)
|
|
|
|
: offset_(offset),
|
|
|
|
size_(size) {
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|