ClickHouse/dbms/src/Interpreters/TraceCollector.cpp

53 lines
1.5 KiB
C++
Raw Normal View History

2019-02-03 09:57:12 +00:00
#include "TraceCollector.h"
2019-02-03 21:30:45 +00:00
#include <common/Backtrace.h>
2019-02-03 09:57:12 +00:00
#include <common/logger_useful.h>
#include <IO/ReadHelpers.h>
#include <IO/ReadBufferFromFileDescriptor.h>
#include <Common/Exception.h>
2019-02-03 21:30:45 +00:00
2019-02-03 09:57:12 +00:00
namespace DB {
LazyPipe trace_pipe;
2019-02-03 09:57:12 +00:00
TraceCollector::TraceCollector(TraceLog * trace_log, std::future<void>&& stop_future)
2019-02-03 09:57:12 +00:00
: log(&Logger::get("TraceCollector"))
2019-02-03 21:30:45 +00:00
, trace_log(trace_log)
, stop_future(std::move(stop_future))
2019-02-03 09:57:12 +00:00
{
}
void TraceCollector::run()
{
DB::ReadBufferFromFileDescriptor in(trace_pipe.fds_rw[0]);
2019-02-03 09:57:12 +00:00
while (stop_future.wait_for(std::chrono::milliseconds(1)) == std::future_status::timeout)
2019-02-03 09:57:12 +00:00
{
2019-02-03 21:30:45 +00:00
ucontext_t context;
std::string query_id;
try {
DB::readPODBinary(context, in);
DB::readStringBinary(query_id, in);
} catch (Exception) {
/// Pipe was closed - looks like server is about to shutdown
/// Let us wait for stop_future
continue;
}
2019-02-03 21:30:45 +00:00
if (trace_log != nullptr) {
std::vector<void *> frames = getBacktraceFrames(context);
std::vector<UInt64> trace;
trace.reserve(frames.size());
for (void * frame : frames) {
trace.push_back(reinterpret_cast<uintptr_t>(frame));
}
TraceLogElement element{std::time(nullptr), query_id, trace};
2019-02-03 21:30:45 +00:00
trace_log->add(element);
}
2019-02-03 09:57:12 +00:00
}
}
}