2016-10-24 04:06:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <string>
|
2019-01-14 19:22:09 +00:00
|
|
|
#include <Common/ThreadPool.h>
|
2020-04-19 20:49:13 +00:00
|
|
|
#include <Common/MemoryStatisticsOS.h>
|
2016-10-24 04:06:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class Context;
|
2020-12-17 13:47:03 +00:00
|
|
|
class ProtocolServerAdapter;
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2020-12-17 13:47:03 +00:00
|
|
|
using AsynchronousMetricValue = double;
|
|
|
|
using AsynchronousMetricValues = std::unordered_map<std::string, AsynchronousMetricValue>;
|
2020-06-10 19:17:30 +00:00
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2020-06-26 00:16:58 +00:00
|
|
|
/** Periodically (by default, each minute, starting at 30 seconds offset)
|
2016-10-24 04:06:27 +00:00
|
|
|
* calculates and updates some metrics,
|
|
|
|
* that are not updated automatically (so, need to be asynchronously calculated).
|
|
|
|
*/
|
|
|
|
class AsynchronousMetrics
|
|
|
|
{
|
|
|
|
public:
|
2020-12-21 23:03:08 +00:00
|
|
|
/// This constructor needs only to provide backward compatibility with some other projects (hello, Arcadia).
|
|
|
|
/// Never use this in the ClickHouse codebase.
|
2020-12-21 21:47:10 +00:00
|
|
|
AsynchronousMetrics(
|
|
|
|
Context & global_context_,
|
|
|
|
int update_period_seconds = 60)
|
|
|
|
: global_context(global_context_)
|
|
|
|
, update_period(update_period_seconds)
|
|
|
|
{
|
|
|
|
}
|
2020-12-21 23:03:08 +00:00
|
|
|
/// The default value of update_period_seconds is for ClickHouse-over-YT
|
|
|
|
/// in Arcadia -- it uses its own server implementation that also uses these
|
|
|
|
/// metrics.
|
2020-12-17 13:47:03 +00:00
|
|
|
AsynchronousMetrics(
|
|
|
|
Context & global_context_,
|
|
|
|
int update_period_seconds,
|
2020-12-21 21:47:10 +00:00
|
|
|
std::shared_ptr<std::vector<ProtocolServerAdapter>> servers_to_start_before_tables_,
|
|
|
|
std::shared_ptr<std::vector<ProtocolServerAdapter>> servers_)
|
2020-12-17 13:47:03 +00:00
|
|
|
: global_context(global_context_)
|
|
|
|
, update_period(update_period_seconds)
|
|
|
|
, servers_to_start_before_tables(servers_to_start_before_tables_)
|
|
|
|
, servers(servers_)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
}
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
~AsynchronousMetrics();
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2020-12-17 13:47:03 +00:00
|
|
|
/// Separate method allows to initialize the `servers` variable beforehand.
|
|
|
|
void start()
|
|
|
|
{
|
|
|
|
thread = std::make_unique<ThreadFromGlobalPool>([this] { run(); });
|
|
|
|
}
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Returns copy of all values.
|
2020-06-10 19:17:30 +00:00
|
|
|
AsynchronousMetricValues getValues() const;
|
2016-10-24 04:06:27 +00:00
|
|
|
|
|
|
|
private:
|
2020-12-17 13:47:03 +00:00
|
|
|
Context & global_context;
|
2020-06-26 00:16:58 +00:00
|
|
|
const std::chrono::seconds update_period;
|
2020-12-21 21:47:10 +00:00
|
|
|
std::shared_ptr<std::vector<ProtocolServerAdapter>> servers_to_start_before_tables{nullptr};
|
|
|
|
std::shared_ptr<std::vector<ProtocolServerAdapter>> servers{nullptr};
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2020-06-10 19:17:30 +00:00
|
|
|
mutable std::mutex mutex;
|
2017-04-01 07:20:54 +00:00
|
|
|
std::condition_variable wait_cond;
|
2020-06-10 19:17:30 +00:00
|
|
|
bool quit {false};
|
|
|
|
AsynchronousMetricValues values;
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2020-04-21 18:49:19 +00:00
|
|
|
#if defined(OS_LINUX)
|
2020-04-19 20:49:13 +00:00
|
|
|
MemoryStatisticsOS memory_stat;
|
2020-04-21 18:49:19 +00:00
|
|
|
#endif
|
|
|
|
|
2020-12-17 13:47:03 +00:00
|
|
|
std::unique_ptr<ThreadFromGlobalPool> thread;
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void run();
|
|
|
|
void update();
|
2016-10-24 04:06:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|