提交 a9866b72 编写于 作者: A Abhishek Kona

Refactor statistics. Remove individual functions like incNumFileOpens

Summary:
Use only the counter mechanism. Do away with
incNumFileOpens, incNumFileClose, incNumFileErrors
s/NULL/nullptr/g in db/table_cache.cc

Test Plan: make clean check

Reviewers: dhruba, heyongqiang, emayanke

Reviewed By: dhruba

CC: leveldb

Differential Revision: https://reviews.facebook.net/D8841
上级 465b9103
...@@ -629,9 +629,9 @@ class Benchmark { ...@@ -629,9 +629,9 @@ class Benchmark {
"Bloom Filter Useful: %ld \n" "Bloom Filter Useful: %ld \n"
"Compaction key_drop_newer_entry: %ld key_drop_obsolete: %ld " "Compaction key_drop_newer_entry: %ld key_drop_obsolete: %ld "
"Compaction key_drop_user: %ld\n", "Compaction key_drop_user: %ld\n",
dbstats->getNumFileOpens(), dbstats->getTickerCount(NO_FILE_OPENS),
dbstats->getNumFileCloses(), dbstats->getTickerCount(NO_FILE_CLOSES),
dbstats->getNumFileErrors(), dbstats->getTickerCount(NO_FILE_ERRORS),
dbstats->getTickerCount(BLOCK_CACHE_HIT), dbstats->getTickerCount(BLOCK_CACHE_HIT),
dbstats->getTickerCount(BLOCK_CACHE_MISS), dbstats->getTickerCount(BLOCK_CACHE_MISS),
dbstats->getTickerCount(BLOOM_FILTER_USEFUL), dbstats->getTickerCount(BLOOM_FILTER_USEFUL),
......
...@@ -24,21 +24,6 @@ class DBStatistics: public Statistics { ...@@ -24,21 +24,6 @@ class DBStatistics: public Statistics {
virtual ~DBStatistics() {} virtual ~DBStatistics() {}
virtual void incNumFileOpens() {
MutexLock l(&mu_);
numFileOpens_++;
}
virtual void incNumFileCloses() {
MutexLock l(&mu_);
numFileCloses_++;
}
virtual void incNumFileErrors() {
MutexLock l(&mu_);
numFileErrors_++;
}
virtual long getTickerCount(Tickers tickerType) { virtual long getTickerCount(Tickers tickerType) {
assert(tickerType < TICKER_ENUM_MAX); assert(tickerType < TICKER_ENUM_MAX);
return allTickers_[tickerType].getCount(); return allTickers_[tickerType].getCount();
...@@ -65,7 +50,6 @@ class DBStatistics: public Statistics { ...@@ -65,7 +50,6 @@ class DBStatistics: public Statistics {
allHistograms_[histogramType].Data(data); allHistograms_[histogramType].Data(data);
} }
port::Mutex mu_;
std::vector<Ticker> allTickers_; std::vector<Ticker> allTickers_;
std::vector<HistogramImpl> allHistograms_; std::vector<HistogramImpl> allHistograms_;
}; };
......
...@@ -5,9 +5,10 @@ ...@@ -5,9 +5,10 @@
#include "db/table_cache.h" #include "db/table_cache.h"
#include "db/filename.h" #include "db/filename.h"
#include "db/db_statistics.h"
#include "leveldb/env.h" #include "leveldb/env.h"
#include "leveldb/table.h" #include "leveldb/table.h"
#include "leveldb/statistics.h"
#include "util/coding.h" #include "util/coding.h"
namespace leveldb { namespace leveldb {
...@@ -17,13 +18,11 @@ struct TableAndFile { ...@@ -17,13 +18,11 @@ struct TableAndFile {
unique_ptr<Table> table; unique_ptr<Table> table;
}; };
static class DBStatistics* dbstatistics; static class Statistics* dbstatistics;
static void DeleteEntry(const Slice& key, void* value) { static void DeleteEntry(const Slice& key, void* value) {
TableAndFile* tf = reinterpret_cast<TableAndFile*>(value); TableAndFile* tf = reinterpret_cast<TableAndFile*>(value);
if (dbstatistics) { RecordTick(dbstatistics, NO_FILE_CLOSES);
dbstatistics->incNumFileCloses();
}
delete tf; delete tf;
} }
...@@ -40,7 +39,7 @@ TableCache::TableCache(const std::string& dbname, ...@@ -40,7 +39,7 @@ TableCache::TableCache(const std::string& dbname,
dbname_(dbname), dbname_(dbname),
options_(options), options_(options),
cache_(NewLRUCache(entries, options->table_cache_numshardbits)) { cache_(NewLRUCache(entries, options->table_cache_numshardbits)) {
dbstatistics = (DBStatistics*)options->statistics; dbstatistics = options->statistics;
} }
TableCache::~TableCache() { TableCache::~TableCache() {
...@@ -52,24 +51,23 @@ Status TableCache::FindTable(uint64_t file_number, uint64_t file_size, ...@@ -52,24 +51,23 @@ Status TableCache::FindTable(uint64_t file_number, uint64_t file_size,
char buf[sizeof(file_number)]; char buf[sizeof(file_number)];
EncodeFixed64(buf, file_number); EncodeFixed64(buf, file_number);
Slice key(buf, sizeof(buf)); Slice key(buf, sizeof(buf));
DBStatistics* stats = (DBStatistics*) options_->statistics;
*handle = cache_->Lookup(key); *handle = cache_->Lookup(key);
if (*handle == NULL) { if (*handle == nullptr) {
if (tableIO != NULL) { if (tableIO != nullptr) {
*tableIO = true; // we had to do IO from storage *tableIO = true; // we had to do IO from storage
} }
std::string fname = TableFileName(dbname_, file_number); std::string fname = TableFileName(dbname_, file_number);
unique_ptr<RandomAccessFile> file; unique_ptr<RandomAccessFile> file;
unique_ptr<Table> table; unique_ptr<Table> table;
s = env_->NewRandomAccessFile(fname, &file); s = env_->NewRandomAccessFile(fname, &file);
stats ? stats->incNumFileOpens() : (void)0; RecordTick(options_->statistics, NO_FILE_OPENS);
if (s.ok()) { if (s.ok()) {
s = Table::Open(*options_, std::move(file), file_size, &table); s = Table::Open(*options_, std::move(file), file_size, &table);
} }
if (!s.ok()) { if (!s.ok()) {
assert(table == NULL); assert(table == nullptr);
stats ? stats->incNumFileErrors() : (void)0; RecordTick(options_->statistics, NO_FILE_ERRORS);
// We do not cache error results so that if the error is transient, // We do not cache error results so that if the error is transient,
// or somebody repairs the file, we recover automatically. // or somebody repairs the file, we recover automatically.
} else { } else {
...@@ -86,11 +84,11 @@ Iterator* TableCache::NewIterator(const ReadOptions& options, ...@@ -86,11 +84,11 @@ Iterator* TableCache::NewIterator(const ReadOptions& options,
uint64_t file_number, uint64_t file_number,
uint64_t file_size, uint64_t file_size,
Table** tableptr) { Table** tableptr) {
if (tableptr != NULL) { if (tableptr != nullptr) {
*tableptr = NULL; *tableptr = nullptr;
} }
Cache::Handle* handle = NULL; Cache::Handle* handle = nullptr;
Status s = FindTable(file_number, file_size, &handle); Status s = FindTable(file_number, file_size, &handle);
if (!s.ok()) { if (!s.ok()) {
return NewErrorIterator(s); return NewErrorIterator(s);
...@@ -100,7 +98,7 @@ Iterator* TableCache::NewIterator(const ReadOptions& options, ...@@ -100,7 +98,7 @@ Iterator* TableCache::NewIterator(const ReadOptions& options,
reinterpret_cast<TableAndFile*>(cache_->Value(handle))->table.get(); reinterpret_cast<TableAndFile*>(cache_->Value(handle))->table.get();
Iterator* result = table->NewIterator(options); Iterator* result = table->NewIterator(options);
result->RegisterCleanup(&UnrefEntry, cache_.get(), handle); result->RegisterCleanup(&UnrefEntry, cache_.get(), handle);
if (tableptr != NULL) { if (tableptr != nullptr) {
*tableptr = table; *tableptr = table;
} }
return result; return result;
...@@ -113,7 +111,7 @@ Status TableCache::Get(const ReadOptions& options, ...@@ -113,7 +111,7 @@ Status TableCache::Get(const ReadOptions& options,
void* arg, void* arg,
void (*saver)(void*, const Slice&, const Slice&, bool), void (*saver)(void*, const Slice&, const Slice&, bool),
bool* tableIO) { bool* tableIO) {
Cache::Handle* handle = NULL; Cache::Handle* handle = nullptr;
Status s = FindTable(file_number, file_size, &handle, tableIO); Status s = FindTable(file_number, file_size, &handle, tableIO);
if (s.ok()) { if (s.ok()) {
Table* t = Table* t =
......
...@@ -36,7 +36,10 @@ enum Tickers { ...@@ -36,7 +36,10 @@ enum Tickers {
// Bytes written / read // Bytes written / read
BYTES_WRITTEN = 8, BYTES_WRITTEN = 8,
BYTES_READ = 9, BYTES_READ = 9,
TICKER_ENUM_MAX = 10, NO_FILE_CLOSES = 10,
NO_FILE_OPENS = 11,
NO_FILE_ERRORS = 12,
TICKER_ENUM_MAX = 13,
}; };
...@@ -110,18 +113,6 @@ class Ticker { ...@@ -110,18 +113,6 @@ class Ticker {
// Analyze the performance of a db // Analyze the performance of a db
class Statistics { class Statistics {
public: public:
// Create an Statistics object with default values for all fields.
Statistics() : numFileOpens_(0), numFileCloses_(0),
numFileErrors_(0) {}
virtual void incNumFileOpens() = 0;
virtual void incNumFileCloses() = 0;
virtual void incNumFileErrors() = 0;
virtual long getNumFileOpens() { return numFileOpens_;}
virtual long getNumFileCloses() { return numFileCloses_;}
virtual long getNumFileErrors() { return numFileErrors_;}
~Statistics() {}
virtual long getTickerCount(Tickers tickerType) = 0; virtual long getTickerCount(Tickers tickerType) = 0;
virtual void recordTick(Tickers tickerType, uint64_t count = 0) = 0; virtual void recordTick(Tickers tickerType, uint64_t count = 0) = 0;
...@@ -130,10 +121,6 @@ class Statistics { ...@@ -130,10 +121,6 @@ class Statistics {
virtual void histogramData(Histograms type, HistogramData * const data) = 0; virtual void histogramData(Histograms type, HistogramData * const data) = 0;
protected:
long numFileOpens_;
long numFileCloses_;
long numFileErrors_;
}; };
// Ease of Use functions // Ease of Use functions
......
...@@ -918,9 +918,9 @@ class StressTest { ...@@ -918,9 +918,9 @@ class StressTest {
void PrintStatistics() { void PrintStatistics() {
if (dbstats) { if (dbstats) {
fprintf(stdout, "File opened:%ld closed:%ld errors:%ld\n", fprintf(stdout, "File opened:%ld closed:%ld errors:%ld\n",
dbstats->getNumFileOpens(), dbstats->getTickerCount(NO_FILE_OPENS),
dbstats->getNumFileCloses(), dbstats->getTickerCount(NO_FILE_CLOSES),
dbstats->getNumFileErrors()); dbstats->getTickerCount(NO_FILE_ERRORS));
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册