ClickHouse/dbms/src/Common/QueryProfiler.h

75 lines
1.7 KiB
C++
Raw Normal View History

#pragma once
2019-07-10 20:47:39 +00:00
#include <Core/Types.h>
#include <signal.h>
2019-03-04 13:45:37 +00:00
#include <time.h>
namespace Poco
{
class Logger;
}
namespace DB
{
enum class TimerType : UInt8
{
Real,
Cpu,
};
2019-07-05 13:48:47 +00:00
/**
* Query profiler implementation for selected thread.
*
* This class installs timer and signal handler on creation to:
* 1. periodically pause given thread
* 2. collect thread's current stack trace
* 3. write collected stack trace to trace_pipe for TraceCollector
*
* Desctructor tries to unset timer and restore previous signal handler.
* Note that signal handler implementation is defined by template parameter. See QueryProfilerReal and QueryProfilerCpu.
*/
template <typename ProfilerImpl>
class QueryProfilerBase
{
public:
2019-07-24 00:49:14 +00:00
QueryProfilerBase(const Int32 thread_id, const int clock_type, UInt32 period, const int pause_signal = SIGALRM);
2019-07-10 20:47:39 +00:00
~QueryProfilerBase();
private:
2019-07-10 20:47:39 +00:00
void tryCleanup();
Poco::Logger * log;
/// Timer id from timer_create(2)
timer_t timer_id = nullptr;
/// Pause signal to interrupt threads to get traces
int pause_signal;
/// Previous signal handler to restore after query profiler exits
struct sigaction * previous_handler = nullptr;
};
2019-07-05 13:48:47 +00:00
/// Query profiler with timer based on real clock
class QueryProfilerReal : public QueryProfilerBase<QueryProfilerReal>
{
public:
2019-07-10 20:47:39 +00:00
QueryProfilerReal(const Int32 thread_id, const UInt32 period);
static void signalHandler(int sig, siginfo_t * info, void * context);
};
2019-07-05 13:48:47 +00:00
/// Query profiler with timer based on CPU clock
class QueryProfilerCpu : public QueryProfilerBase<QueryProfilerCpu>
{
public:
2019-07-10 20:47:39 +00:00
QueryProfilerCpu(const Int32 thread_id, const UInt32 period);
static void signalHandler(int sig, siginfo_t * info, void * context);
};
}