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.
|
|
|
|
//
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/env.h"
|
2014-01-17 21:46:06 +01:00
|
|
|
#include "util/statistics.h"
|
2013-02-15 20:53:17 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-05-17 19:55:34 +02:00
|
|
|
// Auto-scoped.
|
2014-07-28 21:22:37 +02:00
|
|
|
// Records the measure time into the corresponding histogram if statistics
|
|
|
|
// is not nullptr. It is also saved into *elapsed if the pointer is not nullptr.
|
2013-02-15 20:53:17 +01:00
|
|
|
class StopWatch {
|
|
|
|
public:
|
2014-07-28 21:05:36 +02:00
|
|
|
StopWatch(Env * const env, Statistics* statistics,
|
2014-07-28 21:22:37 +02:00
|
|
|
const uint32_t hist_type,
|
|
|
|
uint64_t* elapsed = nullptr)
|
2014-07-28 21:05:36 +02:00
|
|
|
: env_(env),
|
2013-05-17 19:55:34 +02:00
|
|
|
statistics_(statistics),
|
2014-07-28 21:05:36 +02:00
|
|
|
hist_type_(hist_type),
|
2014-07-28 21:22:37 +02:00
|
|
|
elapsed_(elapsed),
|
|
|
|
stats_enabled_(statistics && statistics->HistEnabledForType(hist_type)),
|
|
|
|
start_time_((stats_enabled_ || elapsed != nullptr) ?
|
|
|
|
env->NowMicros() : 0) {
|
2014-07-28 21:05:36 +02:00
|
|
|
}
|
2013-02-15 20:53:17 +01:00
|
|
|
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
~StopWatch() {
|
2014-07-28 21:22:37 +02:00
|
|
|
if (elapsed_) {
|
|
|
|
*elapsed_ = env_->NowMicros() - start_time_;
|
|
|
|
}
|
|
|
|
if (stats_enabled_) {
|
|
|
|
statistics_->measureTime(hist_type_,
|
|
|
|
(elapsed_ != nullptr) ? *elapsed_ :
|
|
|
|
(env_->NowMicros() - start_time_));
|
2014-07-28 21:05:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-02-15 20:53:17 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Env* const env_;
|
2013-11-22 23:14:05 +01:00
|
|
|
Statistics* statistics_;
|
2014-07-28 21:05:36 +02:00
|
|
|
const uint32_t hist_type_;
|
2014-07-28 21:22:37 +02:00
|
|
|
uint64_t* elapsed_;
|
|
|
|
bool stats_enabled_;
|
2014-07-28 21:05:36 +02:00
|
|
|
const uint64_t start_time_;
|
2013-02-15 20:53:17 +01:00
|
|
|
};
|
[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
|
|
|
|
|
|
|
// a nano second precision stopwatch
|
|
|
|
class StopWatchNano {
|
|
|
|
public:
|
2013-11-22 23:14:05 +01:00
|
|
|
explicit StopWatchNano(Env* const env, bool auto_start = false)
|
[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
|
|
|
: env_(env), start_(0) {
|
|
|
|
if (auto_start) {
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Start() { start_ = env_->NowNanos(); }
|
|
|
|
|
|
|
|
uint64_t ElapsedNanos(bool reset = false) {
|
|
|
|
auto now = env_->NowNanos();
|
|
|
|
auto elapsed = now - start_;
|
|
|
|
if (reset) {
|
|
|
|
start_ = now;
|
|
|
|
}
|
|
|
|
return elapsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Env* const env_;
|
|
|
|
uint64_t start_;
|
|
|
|
};
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|