2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
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.
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "monitoring/histogram.h"
|
2017-03-09 07:13:15 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <stdio.h>
|
2021-10-14 23:44:15 +02:00
|
|
|
|
|
|
|
#include <algorithm>
|
2019-09-20 21:00:55 +02:00
|
|
|
#include <cassert>
|
|
|
|
#include <cinttypes>
|
2020-02-06 05:59:13 +01:00
|
|
|
#include <cmath>
|
2017-03-09 07:13:15 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "port/port.h"
|
2017-07-29 01:23:50 +02:00
|
|
|
#include "util/cast_util.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2017-08-22 02:09:20 +02:00
|
|
|
HistogramBucketMapper::HistogramBucketMapper() {
|
|
|
|
// If you change this, you also need to change
|
|
|
|
// size of array buckets_ in HistogramImpl
|
|
|
|
bucketValues_ = {1, 2};
|
|
|
|
double bucket_val = static_cast<double>(bucketValues_.back());
|
|
|
|
while ((bucket_val = 1.5 * bucket_val) <= static_cast<double>(port::kMaxUint64)) {
|
|
|
|
bucketValues_.push_back(static_cast<uint64_t>(bucket_val));
|
|
|
|
// Extracts two most significant digits to make histogram buckets more
|
|
|
|
// human-readable. E.g., 172 becomes 170.
|
|
|
|
uint64_t pow_of_ten = 1;
|
|
|
|
while (bucketValues_.back() / 10 > 10) {
|
|
|
|
bucketValues_.back() /= 10;
|
|
|
|
pow_of_ten *= 10;
|
|
|
|
}
|
|
|
|
bucketValues_.back() *= pow_of_ten;
|
2013-01-29 21:23:31 +01:00
|
|
|
}
|
2017-08-22 02:09:20 +02:00
|
|
|
maxBucketValue_ = bucketValues_.back();
|
|
|
|
minBucketValue_ = bucketValues_.front();
|
2013-01-29 21:23:31 +01:00
|
|
|
}
|
|
|
|
|
2014-09-04 16:04:37 +02:00
|
|
|
size_t HistogramBucketMapper::IndexForValue(const uint64_t value) const {
|
2021-10-14 23:44:15 +02:00
|
|
|
auto beg = bucketValues_.begin();
|
|
|
|
auto end = bucketValues_.end();
|
|
|
|
if (value >= maxBucketValue_)
|
|
|
|
return end - beg - 1; // bucketValues_.size() - 1
|
|
|
|
else
|
|
|
|
return std::lower_bound(beg, end, value) - beg;
|
2013-01-29 21:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const HistogramBucketMapper bucketMapper;
|
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
HistogramStat::HistogramStat()
|
|
|
|
: num_buckets_(bucketMapper.BucketCount()) {
|
|
|
|
assert(num_buckets_ == sizeof(buckets_) / sizeof(*buckets_));
|
|
|
|
Clear();
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
void HistogramStat::Clear() {
|
|
|
|
min_.store(bucketMapper.LastValue(), std::memory_order_relaxed);
|
|
|
|
max_.store(0, std::memory_order_relaxed);
|
|
|
|
num_.store(0, std::memory_order_relaxed);
|
|
|
|
sum_.store(0, std::memory_order_relaxed);
|
|
|
|
sum_squares_.store(0, std::memory_order_relaxed);
|
|
|
|
for (unsigned int b = 0; b < num_buckets_; b++) {
|
|
|
|
buckets_[b].store(0, std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
};
|
2014-01-17 21:46:06 +01:00
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
bool HistogramStat::Empty() const { return num() == 0; }
|
|
|
|
|
|
|
|
void HistogramStat::Add(uint64_t value) {
|
|
|
|
// This function is designed to be lock free, as it's in the critical path
|
|
|
|
// of any operation. Each individual value is atomic and the order of updates
|
|
|
|
// by concurrent threads is tolerable.
|
2013-01-29 21:23:31 +01:00
|
|
|
const size_t index = bucketMapper.IndexForValue(value);
|
2016-03-15 19:38:15 +01:00
|
|
|
assert(index < num_buckets_);
|
2017-08-11 22:09:38 +02:00
|
|
|
buckets_[index].store(buckets_[index].load(std::memory_order_relaxed) + 1,
|
|
|
|
std::memory_order_relaxed);
|
2016-03-12 01:54:25 +01:00
|
|
|
|
|
|
|
uint64_t old_min = min();
|
2017-08-11 22:09:38 +02:00
|
|
|
if (value < old_min) {
|
|
|
|
min_.store(value, std::memory_order_relaxed);
|
|
|
|
}
|
2016-03-12 01:54:25 +01:00
|
|
|
|
|
|
|
uint64_t old_max = max();
|
2017-08-11 22:09:38 +02:00
|
|
|
if (value > old_max) {
|
|
|
|
max_.store(value, std::memory_order_relaxed);
|
|
|
|
}
|
2016-03-12 01:54:25 +01:00
|
|
|
|
2017-08-11 22:09:38 +02:00
|
|
|
num_.store(num_.load(std::memory_order_relaxed) + 1,
|
|
|
|
std::memory_order_relaxed);
|
|
|
|
sum_.store(sum_.load(std::memory_order_relaxed) + value,
|
|
|
|
std::memory_order_relaxed);
|
|
|
|
sum_squares_.store(
|
|
|
|
sum_squares_.load(std::memory_order_relaxed) + value * value,
|
|
|
|
std::memory_order_relaxed);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
void HistogramStat::Merge(const HistogramStat& other) {
|
|
|
|
// This function needs to be performned with the outer lock acquired
|
|
|
|
// However, atomic operation on every member is still need, since Add()
|
|
|
|
// requires no lock and value update can still happen concurrently
|
|
|
|
uint64_t old_min = min();
|
|
|
|
uint64_t other_min = other.min();
|
|
|
|
while (other_min < old_min &&
|
|
|
|
!min_.compare_exchange_weak(old_min, other_min)) {}
|
|
|
|
|
|
|
|
uint64_t old_max = max();
|
|
|
|
uint64_t other_max = other.max();
|
|
|
|
while (other_max > old_max &&
|
|
|
|
!max_.compare_exchange_weak(old_max, other_max)) {}
|
|
|
|
|
|
|
|
num_.fetch_add(other.num(), std::memory_order_relaxed);
|
|
|
|
sum_.fetch_add(other.sum(), std::memory_order_relaxed);
|
|
|
|
sum_squares_.fetch_add(other.sum_squares(), std::memory_order_relaxed);
|
|
|
|
for (unsigned int b = 0; b < num_buckets_; b++) {
|
|
|
|
buckets_[b].fetch_add(other.bucket_at(b), std::memory_order_relaxed);
|
2011-08-22 23:08:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
double HistogramStat::Median() const {
|
2011-03-18 23:37:00 +01:00
|
|
|
return Percentile(50.0);
|
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
double HistogramStat::Percentile(double p) const {
|
|
|
|
double threshold = num() * (p / 100.0);
|
|
|
|
uint64_t cumulative_sum = 0;
|
|
|
|
for (unsigned int b = 0; b < num_buckets_; b++) {
|
|
|
|
uint64_t bucket_value = bucket_at(b);
|
|
|
|
cumulative_sum += bucket_value;
|
|
|
|
if (cumulative_sum >= threshold) {
|
2011-03-18 23:37:00 +01:00
|
|
|
// Scale linearly within this bucket
|
2016-03-12 01:54:25 +01:00
|
|
|
uint64_t left_point = (b == 0) ? 0 : bucketMapper.BucketLimit(b-1);
|
|
|
|
uint64_t right_point = bucketMapper.BucketLimit(b);
|
|
|
|
uint64_t left_sum = cumulative_sum - bucket_value;
|
|
|
|
uint64_t right_sum = cumulative_sum;
|
2013-01-29 21:23:31 +01:00
|
|
|
double pos = 0;
|
2016-03-12 01:54:25 +01:00
|
|
|
uint64_t right_left_diff = right_sum - left_sum;
|
2013-01-29 21:23:31 +01:00
|
|
|
if (right_left_diff != 0) {
|
2016-03-12 01:54:25 +01:00
|
|
|
pos = (threshold - left_sum) / right_left_diff;
|
2013-01-29 21:23:31 +01:00
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
double r = left_point + (right_point - left_point) * pos;
|
2016-03-12 01:54:25 +01:00
|
|
|
uint64_t cur_min = min();
|
|
|
|
uint64_t cur_max = max();
|
|
|
|
if (r < cur_min) r = static_cast<double>(cur_min);
|
|
|
|
if (r > cur_max) r = static_cast<double>(cur_max);
|
2011-03-18 23:37:00 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
2016-03-12 01:54:25 +01:00
|
|
|
return static_cast<double>(max());
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
double HistogramStat::Average() const {
|
|
|
|
uint64_t cur_num = num();
|
|
|
|
uint64_t cur_sum = sum();
|
|
|
|
if (cur_num == 0) return 0;
|
|
|
|
return static_cast<double>(cur_sum) / static_cast<double>(cur_num);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
double HistogramStat::StandardDeviation() const {
|
|
|
|
uint64_t cur_num = num();
|
|
|
|
uint64_t cur_sum = sum();
|
|
|
|
uint64_t cur_sum_squares = sum_squares();
|
|
|
|
if (cur_num == 0) return 0;
|
|
|
|
double variance =
|
|
|
|
static_cast<double>(cur_sum_squares * cur_num - cur_sum * cur_sum) /
|
|
|
|
static_cast<double>(cur_num * cur_num);
|
2020-02-06 05:59:13 +01:00
|
|
|
return std::sqrt(variance);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2016-03-12 01:54:25 +01:00
|
|
|
std::string HistogramStat::ToString() const {
|
|
|
|
uint64_t cur_num = num();
|
2011-03-18 23:37:00 +01:00
|
|
|
std::string r;
|
2016-12-13 22:52:00 +01:00
|
|
|
char buf[1650];
|
2011-03-18 23:37:00 +01:00
|
|
|
snprintf(buf, sizeof(buf),
|
2016-03-12 01:54:25 +01:00
|
|
|
"Count: %" PRIu64 " Average: %.4f StdDev: %.2f\n",
|
|
|
|
cur_num, Average(), StandardDeviation());
|
2011-03-18 23:37:00 +01:00
|
|
|
r.append(buf);
|
|
|
|
snprintf(buf, sizeof(buf),
|
2016-03-12 01:54:25 +01:00
|
|
|
"Min: %" PRIu64 " Median: %.4f Max: %" PRIu64 "\n",
|
|
|
|
(cur_num == 0 ? 0 : min()), Median(), (cur_num == 0 ? 0 : max()));
|
2011-03-18 23:37:00 +01:00
|
|
|
r.append(buf);
|
2013-02-07 02:12:43 +01:00
|
|
|
snprintf(buf, sizeof(buf),
|
2013-04-17 19:56:39 +02:00
|
|
|
"Percentiles: "
|
|
|
|
"P50: %.2f P75: %.2f P99: %.2f P99.9: %.2f P99.99: %.2f\n",
|
|
|
|
Percentile(50), Percentile(75), Percentile(99), Percentile(99.9),
|
|
|
|
Percentile(99.99));
|
2013-02-07 02:12:43 +01:00
|
|
|
r.append(buf);
|
2011-03-18 23:37:00 +01:00
|
|
|
r.append("------------------------------------------------------\n");
|
2017-11-02 19:30:51 +01:00
|
|
|
if (cur_num == 0) return r; // all buckets are empty
|
2016-03-12 01:54:25 +01:00
|
|
|
const double mult = 100.0 / cur_num;
|
|
|
|
uint64_t cumulative_sum = 0;
|
|
|
|
for (unsigned int b = 0; b < num_buckets_; b++) {
|
|
|
|
uint64_t bucket_value = bucket_at(b);
|
|
|
|
if (bucket_value <= 0.0) continue;
|
|
|
|
cumulative_sum += bucket_value;
|
2011-03-18 23:37:00 +01:00
|
|
|
snprintf(buf, sizeof(buf),
|
2017-09-01 19:46:26 +02:00
|
|
|
"%c %7" PRIu64 ", %7" PRIu64 " ] %8" PRIu64 " %7.3f%% %7.3f%% ",
|
|
|
|
(b == 0) ? '[' : '(',
|
2016-03-12 01:54:25 +01:00
|
|
|
(b == 0) ? 0 : bucketMapper.BucketLimit(b-1), // left
|
|
|
|
bucketMapper.BucketLimit(b), // right
|
|
|
|
bucket_value, // count
|
|
|
|
(mult * bucket_value), // percentage
|
|
|
|
(mult * cumulative_sum)); // cumulative percentage
|
2011-03-18 23:37:00 +01:00
|
|
|
r.append(buf);
|
|
|
|
|
|
|
|
// Add hash marks based on percentage; 20 marks for 100%.
|
2016-03-12 01:54:25 +01:00
|
|
|
size_t marks = static_cast<size_t>(mult * bucket_value / 5 + 0.5);
|
2011-03-18 23:37:00 +01:00
|
|
|
r.append(marks, '#');
|
|
|
|
r.push_back('\n');
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
void HistogramStat::Data(HistogramData * const data) const {
|
2013-02-15 20:53:17 +01:00
|
|
|
assert(data);
|
|
|
|
data->median = Median();
|
|
|
|
data->percentile95 = Percentile(95);
|
|
|
|
data->percentile99 = Percentile(99);
|
2017-03-10 20:07:33 +01:00
|
|
|
data->max = static_cast<double>(max());
|
2013-02-15 20:53:17 +01:00
|
|
|
data->average = Average();
|
|
|
|
data->standard_deviation = StandardDeviation();
|
2018-05-21 20:09:00 +02:00
|
|
|
data->count = num();
|
|
|
|
data->sum = sum();
|
2018-12-14 23:18:17 +01:00
|
|
|
data->min = static_cast<double>(min());
|
2013-02-15 20:53:17 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 01:54:25 +01:00
|
|
|
void HistogramImpl::Clear() {
|
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
|
|
|
stats_.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HistogramImpl::Empty() const {
|
|
|
|
return stats_.Empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HistogramImpl::Add(uint64_t value) {
|
|
|
|
stats_.Add(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HistogramImpl::Merge(const Histogram& other) {
|
|
|
|
if (strcmp(Name(), other.Name()) == 0) {
|
2020-04-29 22:06:27 +02:00
|
|
|
Merge(*static_cast_with_check<const HistogramImpl>(&other));
|
2016-03-12 01:54:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HistogramImpl::Merge(const HistogramImpl& other) {
|
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
|
|
|
stats_.Merge(other.stats_);
|
|
|
|
}
|
|
|
|
|
|
|
|
double HistogramImpl::Median() const {
|
|
|
|
return stats_.Median();
|
|
|
|
}
|
|
|
|
|
|
|
|
double HistogramImpl::Percentile(double p) const {
|
|
|
|
return stats_.Percentile(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
double HistogramImpl::Average() const {
|
|
|
|
return stats_.Average();
|
|
|
|
}
|
|
|
|
|
|
|
|
double HistogramImpl::StandardDeviation() const {
|
|
|
|
return stats_.StandardDeviation();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HistogramImpl::ToString() const {
|
|
|
|
return stats_.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HistogramImpl::Data(HistogramData * const data) const {
|
|
|
|
stats_.Data(data);
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|