ClickHouse/src/Storages/System/StorageSystemStackTrace.h
Azat Khuzhin 8122c1b07f Optimize accesses to system.stack_trace
- filter by thread_id
- filter by thread_name
- filter by requested columns (query_id/trace, thread_name)

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-07-13 15:17:09 +03:00

48 lines
988 B
C++

#pragma once
#ifdef OS_LINUX /// Because of 'sigqueue' functions and RT signals.
#include <mutex>
#include <Storages/IStorage.h>
namespace Poco
{
class Logger;
}
namespace DB
{
class Context;
/// Allows to introspect stack trace of all server threads.
/// It acts like an embedded debugger.
/// More than one instance of this table cannot be used.
class StorageSystemStackTrace final : public IStorage
{
public:
explicit StorageSystemStackTrace(const StorageID & table_id_);
String getName() const override { return "SystemStackTrace"; }
Pipe read(
const Names & column_names,
const StorageSnapshotPtr & storage_snapshot,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
unsigned num_streams) override;
bool isSystemStorage() const override { return true; }
protected:
mutable std::mutex mutex;
Poco::Logger * log;
};
}
#endif