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).
|
2015-06-03 02:07:16 +02:00
|
|
|
|
2015-07-29 01:41:40 +02:00
|
|
|
#include "rocksdb/compaction_job_stats.h"
|
2015-06-03 02:07:16 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2015-06-03 02:07:16 +02:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
|
|
|
void CompactionJobStats::Reset() {
|
|
|
|
elapsed_micros = 0;
|
2019-01-30 01:23:21 +01:00
|
|
|
cpu_micros = 0;
|
2015-06-03 02:07:16 +02:00
|
|
|
|
2015-07-29 01:41:40 +02:00
|
|
|
num_input_records = 0;
|
2015-06-03 02:07:16 +02:00
|
|
|
num_input_files = 0;
|
|
|
|
num_input_files_at_output_level = 0;
|
|
|
|
|
|
|
|
num_output_records = 0;
|
2015-07-29 01:41:40 +02:00
|
|
|
num_output_files = 0;
|
|
|
|
|
|
|
|
is_manual_compaction = 0;
|
2015-06-03 02:07:16 +02:00
|
|
|
|
|
|
|
total_input_bytes = 0;
|
|
|
|
total_output_bytes = 0;
|
|
|
|
|
|
|
|
num_records_replaced = 0;
|
|
|
|
|
2015-07-29 01:41:40 +02:00
|
|
|
total_input_raw_key_bytes = 0;
|
|
|
|
total_input_raw_value_bytes = 0;
|
2015-07-14 00:51:38 +02:00
|
|
|
|
|
|
|
num_input_deletion_records = 0;
|
|
|
|
num_expired_deletion_records = 0;
|
2015-07-29 01:41:40 +02:00
|
|
|
|
|
|
|
num_corrupt_keys = 0;
|
Add options.compaction_measure_io_stats to print write I/O stats in compactions
Summary:
Add options.compaction_measure_io_stats to print out / pass to listener accumulated time spent on write calls. Example outputs in info logs:
2015/08/12-16:27:59.463944 7fd428bff700 (Original Log Time 2015/08/12-16:27:59.463922) EVENT_LOG_v1 {"time_micros": 1439422079463897, "job": 6, "event": "compaction_finished", "output_level": 1, "num_output_files": 4, "total_output_size": 6900525, "num_input_records": 111483, "num_output_records": 106877, "file_write_nanos": 15663206, "file_range_sync_nanos": 649588, "file_fsync_nanos": 349614797, "file_prepare_write_nanos": 1505812, "lsm_state": [2, 4, 0, 0, 0, 0, 0]}
Add two more counters in iostats_context.
Also add a parameter of db_bench.
Test Plan: Add a unit test. Also manually verify LOG outputs in db_bench
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D44115
2015-08-13 02:24:45 +02:00
|
|
|
|
|
|
|
file_write_nanos = 0;
|
|
|
|
file_range_sync_nanos = 0;
|
|
|
|
file_fsync_nanos = 0;
|
|
|
|
file_prepare_write_nanos = 0;
|
2016-08-16 17:21:43 +02:00
|
|
|
|
2019-05-04 02:26:20 +02:00
|
|
|
smallest_output_key_prefix.clear();
|
|
|
|
largest_output_key_prefix.clear();
|
|
|
|
|
2016-08-16 17:21:43 +02:00
|
|
|
num_single_del_fallthru = 0;
|
|
|
|
num_single_del_mismatch = 0;
|
2015-06-03 02:07:16 +02:00
|
|
|
}
|
|
|
|
|
2015-08-18 20:06:23 +02:00
|
|
|
void CompactionJobStats::Add(const CompactionJobStats& stats) {
|
|
|
|
elapsed_micros += stats.elapsed_micros;
|
2019-01-30 01:23:21 +01:00
|
|
|
cpu_micros += stats.cpu_micros;
|
2015-08-18 20:06:23 +02:00
|
|
|
|
|
|
|
num_input_records += stats.num_input_records;
|
|
|
|
num_input_files += stats.num_input_files;
|
|
|
|
num_input_files_at_output_level += stats.num_input_files_at_output_level;
|
|
|
|
|
|
|
|
num_output_records += stats.num_output_records;
|
|
|
|
num_output_files += stats.num_output_files;
|
|
|
|
|
|
|
|
total_input_bytes += stats.total_input_bytes;
|
|
|
|
total_output_bytes += stats.total_output_bytes;
|
|
|
|
|
|
|
|
num_records_replaced += stats.num_records_replaced;
|
|
|
|
|
|
|
|
total_input_raw_key_bytes += stats.total_input_raw_key_bytes;
|
|
|
|
total_input_raw_value_bytes += stats.total_input_raw_value_bytes;
|
|
|
|
|
|
|
|
num_input_deletion_records += stats.num_input_deletion_records;
|
|
|
|
num_expired_deletion_records += stats.num_expired_deletion_records;
|
|
|
|
|
|
|
|
num_corrupt_keys += stats.num_corrupt_keys;
|
|
|
|
|
|
|
|
file_write_nanos += stats.file_write_nanos;
|
|
|
|
file_range_sync_nanos += stats.file_range_sync_nanos;
|
|
|
|
file_fsync_nanos += stats.file_fsync_nanos;
|
|
|
|
file_prepare_write_nanos += stats.file_prepare_write_nanos;
|
2016-08-16 17:21:43 +02:00
|
|
|
|
|
|
|
num_single_del_fallthru += stats.num_single_del_fallthru;
|
|
|
|
num_single_del_mismatch += stats.num_single_del_mismatch;
|
2015-08-18 20:06:23 +02:00
|
|
|
}
|
|
|
|
|
2015-06-03 02:07:16 +02:00
|
|
|
#else
|
|
|
|
|
2015-07-14 00:51:38 +02:00
|
|
|
void CompactionJobStats::Reset() {}
|
2015-06-03 02:07:16 +02:00
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
void CompactionJobStats::Add(const CompactionJobStats& /*stats*/) {}
|
2015-09-14 21:42:06 +02:00
|
|
|
|
2015-06-03 02:07:16 +02:00
|
|
|
#endif // !ROCKSDB_LITE
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|