2019-03-04 13:03:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-19 20:22:44 +00:00
|
|
|
#include <common/Pipe.h>
|
2019-07-04 22:13:51 +00:00
|
|
|
#include <common/StackTrace.h>
|
2019-03-04 13:03:32 +00:00
|
|
|
#include <common/logger_useful.h>
|
|
|
|
#include <Common/CurrentThread.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <IO/WriteBufferFromFileDescriptor.h>
|
|
|
|
|
|
|
|
#include <signal.h>
|
2019-03-04 13:45:37 +00:00
|
|
|
#include <time.h>
|
2019-03-04 13:03:32 +00:00
|
|
|
|
2019-05-14 22:15:23 +00:00
|
|
|
|
2019-03-04 13:03:32 +00:00
|
|
|
namespace Poco
|
|
|
|
{
|
|
|
|
class Logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-05-19 20:22:44 +00:00
|
|
|
extern LazyPipe trace_pipe;
|
|
|
|
|
2019-03-04 13:03:32 +00:00
|
|
|
enum class TimerType : UInt8
|
|
|
|
{
|
|
|
|
Real,
|
|
|
|
Cpu,
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2019-07-05 13:48:47 +00:00
|
|
|
/// Normally query_id is a UUID (string with a fixed length) but user can provide custom query_id.
|
|
|
|
/// Thus upper bound on query_id length should be introduced to avoid buffer overflow in signal handler.
|
|
|
|
constexpr UInt32 QUERY_ID_MAX_LEN = 1024;
|
|
|
|
|
2019-03-04 13:03:32 +00:00
|
|
|
void writeTraceInfo(TimerType timer_type, int /* sig */, siginfo_t * /* info */, void * context)
|
|
|
|
{
|
2019-07-05 13:48:47 +00:00
|
|
|
constexpr UInt32 buf_size = sizeof(char) + // TraceCollector stop flag
|
|
|
|
8 * sizeof(char) + // maximum VarUInt length for string size
|
|
|
|
QUERY_ID_MAX_LEN * sizeof(char) + // maximum query_id length
|
|
|
|
sizeof(StackTrace) + // collected stack trace
|
|
|
|
sizeof(TimerType); // timer type
|
|
|
|
char buffer[buf_size];
|
|
|
|
DB::WriteBufferFromFileDescriptor out(trace_pipe.fds_rw[1], buf_size, buffer);
|
2019-03-04 13:03:32 +00:00
|
|
|
|
|
|
|
const std::string & query_id = CurrentThread::getQueryId();
|
|
|
|
|
2019-05-14 22:15:23 +00:00
|
|
|
const auto signal_context = *reinterpret_cast<ucontext_t *>(context);
|
2019-07-04 22:13:51 +00:00
|
|
|
const StackTrace stack_trace(signal_context);
|
2019-05-14 22:15:23 +00:00
|
|
|
|
2019-07-05 13:48:47 +00:00
|
|
|
DB::writeChar(false, out);
|
2019-03-04 13:03:32 +00:00
|
|
|
DB::writeStringBinary(query_id, out);
|
2019-07-04 22:13:51 +00:00
|
|
|
DB::writePODBinary(stack_trace, out);
|
2019-07-05 13:48:47 +00:00
|
|
|
DB::writePODBinary(timer_type, out);
|
2019-03-04 13:03:32 +00:00
|
|
|
out.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
const UInt32 TIMER_PRECISION = 1e9;
|
|
|
|
}
|
|
|
|
|
2019-05-19 20:22:44 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
2019-03-04 13:03:32 +00:00
|
|
|
template <typename ProfilerImpl>
|
|
|
|
class QueryProfilerBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QueryProfilerBase(const Int32 thread_id, const int clock_type, const UInt32 period, const int pause_signal = SIGALRM)
|
|
|
|
: log(&Logger::get("QueryProfiler"))
|
|
|
|
, pause_signal(pause_signal)
|
|
|
|
{
|
|
|
|
struct sigaction sa{};
|
|
|
|
sa.sa_sigaction = ProfilerImpl::signalHandler;
|
2019-03-10 01:49:36 +00:00
|
|
|
sa.sa_flags = SA_SIGINFO | SA_RESTART;
|
2019-03-04 13:03:32 +00:00
|
|
|
|
|
|
|
if (sigemptyset(&sa.sa_mask))
|
|
|
|
throw Poco::Exception("Failed to clean signal mask for query profiler");
|
|
|
|
|
|
|
|
if (sigaddset(&sa.sa_mask, pause_signal))
|
|
|
|
throw Poco::Exception("Failed to add signal to mask for query profiler");
|
|
|
|
|
|
|
|
if (sigaction(pause_signal, &sa, previous_handler))
|
|
|
|
throw Poco::Exception("Failed to setup signal handler for query profiler");
|
2019-05-19 00:25:45 +00:00
|
|
|
|
|
|
|
struct sigevent sev;
|
|
|
|
sev.sigev_notify = SIGEV_THREAD_ID;
|
|
|
|
sev.sigev_signo = pause_signal;
|
|
|
|
sev._sigev_un._tid = thread_id;
|
|
|
|
if (timer_create(clock_type, &sev, &timer_id))
|
|
|
|
throw Poco::Exception("Failed to create thread timer");
|
|
|
|
|
|
|
|
struct timespec interval{.tv_sec = period / TIMER_PRECISION, .tv_nsec = period % TIMER_PRECISION};
|
|
|
|
struct itimerspec timer_spec = {.it_interval = interval, .it_value = interval};
|
|
|
|
if (timer_settime(timer_id, 0, &timer_spec, nullptr))
|
|
|
|
throw Poco::Exception("Failed to set thread timer");
|
2019-03-04 13:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~QueryProfilerBase()
|
|
|
|
{
|
|
|
|
if (timer_delete(timer_id))
|
|
|
|
LOG_ERROR(log, "Failed to delete query profiler timer");
|
|
|
|
|
|
|
|
if (sigaction(pause_signal, previous_handler, nullptr))
|
|
|
|
LOG_ERROR(log, "Failed to restore signal handler after query profiler");
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
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
|
2019-03-04 13:03:32 +00:00
|
|
|
class QueryProfilerReal : public QueryProfilerBase<QueryProfilerReal>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QueryProfilerReal(const Int32 thread_id, const UInt32 period)
|
|
|
|
: QueryProfilerBase(thread_id, CLOCK_REALTIME, period, SIGUSR1)
|
|
|
|
{}
|
|
|
|
|
|
|
|
static void signalHandler(int sig, siginfo_t * info, void * context)
|
|
|
|
{
|
|
|
|
writeTraceInfo(TimerType::Real, sig, info, context);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-05 13:48:47 +00:00
|
|
|
/// Query profiler with timer based on CPU clock
|
2019-03-04 13:03:32 +00:00
|
|
|
class QueryProfilerCpu : public QueryProfilerBase<QueryProfilerCpu>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QueryProfilerCpu(const Int32 thread_id, const UInt32 period)
|
|
|
|
: QueryProfilerBase(thread_id, CLOCK_THREAD_CPUTIME_ID, period, SIGUSR2)
|
|
|
|
{}
|
|
|
|
|
|
|
|
static void signalHandler(int sig, siginfo_t * info, void * context)
|
|
|
|
{
|
|
|
|
writeTraceInfo(TimerType::Cpu, sig, info, context);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|