2016-10-27 17:48:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <thread>
|
2019-03-21 19:22:38 +00:00
|
|
|
#include <atomic>
|
2020-04-13 01:33:05 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-06-19 12:28:34 +00:00
|
|
|
#include <condition_variable>
|
2016-10-27 17:48:12 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
2017-01-21 04:24:28 +00:00
|
|
|
#include <common/logger_useful.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Types.h>
|
2020-04-15 20:28:05 +00:00
|
|
|
#include <Core/Defines.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Common/Stopwatch.h>
|
|
|
|
#include <Parsers/ASTCreateQuery.h>
|
|
|
|
#include <Parsers/parseQuery.h>
|
2017-09-17 18:49:43 +00:00
|
|
|
#include <Parsers/ParserCreateQuery.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTRenameQuery.h>
|
|
|
|
#include <Parsers/formatAST.h>
|
2019-10-07 14:18:18 +00:00
|
|
|
#include <Parsers/ASTIndexDeclaration.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTInsertQuery.h>
|
|
|
|
#include <Interpreters/InterpreterCreateQuery.h>
|
|
|
|
#include <Interpreters/InterpreterRenameQuery.h>
|
|
|
|
#include <Interpreters/InterpreterInsertQuery.h>
|
|
|
|
#include <Common/setThreadName.h>
|
2019-01-14 19:22:09 +00:00
|
|
|
#include <Common/ThreadPool.h>
|
2018-06-05 19:46:49 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2018-06-14 13:03:23 +00:00
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
2016-10-27 17:48:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/** Allow to store structured log in system table.
|
|
|
|
*
|
|
|
|
* Logging is asynchronous. Data is put into queue from where it will be read by separate thread.
|
|
|
|
* That thread inserts log into a table with no more than specified periodicity.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Structure of log, template parameter.
|
|
|
|
* Structure could change on server version update.
|
|
|
|
* If on first write, existing table has different structure,
|
|
|
|
* then it get renamed (put aside) and new table is created.
|
|
|
|
*/
|
|
|
|
/* Example:
|
2017-04-01 07:20:54 +00:00
|
|
|
struct LogElement
|
|
|
|
{
|
|
|
|
/// default constructor must be available
|
|
|
|
/// fields
|
2016-10-27 17:48:12 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static std::string name();
|
|
|
|
static Block createBlock();
|
|
|
|
void appendToBlock(Block & block) const;
|
|
|
|
};
|
|
|
|
*/
|
2016-10-27 17:48:12 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int TIMEOUT_EXCEEDED;
|
|
|
|
}
|
2016-10-27 17:48:12 +00:00
|
|
|
|
2018-08-22 04:36:53 +00:00
|
|
|
#define DBMS_SYSTEM_LOG_QUEUE_SIZE 1048576
|
2016-10-27 17:48:12 +00:00
|
|
|
|
2020-04-13 01:33:05 +00:00
|
|
|
|
2016-10-27 17:48:12 +00:00
|
|
|
class Context;
|
2020-04-13 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ISystemLog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual String getName() = 0;
|
|
|
|
virtual ASTPtr getCreateTableQuery() = 0;
|
|
|
|
virtual void flush() = 0;
|
|
|
|
virtual void shutdown() = 0;
|
|
|
|
virtual ~ISystemLog() = default;
|
|
|
|
};
|
|
|
|
|
2017-06-05 13:59:38 +00:00
|
|
|
|
2018-03-01 16:52:24 +00:00
|
|
|
/// System logs should be destroyed in destructor of the last Context and before tables,
|
2017-06-05 13:59:38 +00:00
|
|
|
/// because SystemLog destruction makes insert query while flushing data into underlying tables
|
|
|
|
struct SystemLogs
|
|
|
|
{
|
2018-07-08 04:54:37 +00:00
|
|
|
SystemLogs(Context & global_context, const Poco::Util::AbstractConfiguration & config);
|
2017-06-05 13:59:38 +00:00
|
|
|
~SystemLogs();
|
|
|
|
|
2019-06-21 17:25:47 +00:00
|
|
|
void shutdown();
|
|
|
|
|
2019-03-21 19:22:38 +00:00
|
|
|
std::shared_ptr<QueryLog> query_log; /// Used to log queries.
|
|
|
|
std::shared_ptr<QueryThreadLog> query_thread_log; /// Used to log query threads.
|
|
|
|
std::shared_ptr<PartLog> part_log; /// Used to log operations with parts
|
2019-03-23 18:45:22 +00:00
|
|
|
std::shared_ptr<TraceLog> trace_log; /// Used to log traces from query profiler
|
2019-08-04 15:51:04 +00:00
|
|
|
std::shared_ptr<TextLog> text_log; /// Used to log all text messages.
|
2019-08-13 14:31:46 +00:00
|
|
|
std::shared_ptr<MetricLog> metric_log; /// Used to log all metrics.
|
2020-04-13 01:33:05 +00:00
|
|
|
|
|
|
|
std::vector<ISystemLog *> logs;
|
2017-06-05 13:59:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-10-27 17:48:12 +00:00
|
|
|
template <typename LogElement>
|
2020-04-13 01:33:05 +00:00
|
|
|
class SystemLog : public ISystemLog, private boost::noncopyable
|
2016-10-27 17:48:12 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-09-13 14:59:03 +00:00
|
|
|
using Self = SystemLog;
|
2018-05-31 15:54:08 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** Parameter: table name where to write log.
|
|
|
|
* If table is not exists, then it get created with specified engine.
|
|
|
|
* If it already exists, then its structure is checked to be compatible with structure of log record.
|
|
|
|
* If it is compatible, then existing table will be used.
|
|
|
|
* If not - then existing table will be renamed to same name but with suffix '_N' at end,
|
|
|
|
* where N - is a minimal number from 1, for that table with corresponding name doesn't exist yet;
|
|
|
|
* and new table get created - as if previous table was not exist.
|
|
|
|
*/
|
|
|
|
SystemLog(
|
|
|
|
Context & context_,
|
|
|
|
const String & database_name_,
|
|
|
|
const String & table_name_,
|
2017-09-17 18:49:43 +00:00
|
|
|
const String & storage_def_,
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t flush_interval_milliseconds_);
|
|
|
|
|
|
|
|
/** Append a record into log.
|
|
|
|
* Writing to table will be done asynchronously and in case of failure, record could be lost.
|
|
|
|
*/
|
2019-06-19 12:28:34 +00:00
|
|
|
void add(const LogElement & element);
|
2016-10-27 17:48:12 +00:00
|
|
|
|
2020-04-13 01:33:05 +00:00
|
|
|
void stopFlushThread();
|
|
|
|
|
2018-06-13 19:01:07 +00:00
|
|
|
/// Flush data in the buffer to disk
|
2020-04-13 01:33:05 +00:00
|
|
|
void flush() override;
|
2019-03-21 19:22:38 +00:00
|
|
|
|
|
|
|
/// Stop the background flush thread before destructor. No more data will be written.
|
2020-04-13 01:33:05 +00:00
|
|
|
void shutdown() override
|
|
|
|
{
|
|
|
|
stopFlushThread();
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() override
|
|
|
|
{
|
|
|
|
return LogElement::name();
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTPtr getCreateTableQuery() override;
|
2018-06-13 19:01:07 +00:00
|
|
|
|
2018-01-23 22:56:46 +00:00
|
|
|
protected:
|
2020-01-31 15:45:58 +00:00
|
|
|
Logger * log;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/* Saving thread data */
|
2017-04-01 07:20:54 +00:00
|
|
|
Context & context;
|
2020-02-17 19:28:25 +00:00
|
|
|
const StorageID table_id;
|
2017-09-17 18:49:43 +00:00
|
|
|
const String storage_def;
|
2017-04-01 07:20:54 +00:00
|
|
|
StoragePtr table;
|
2020-01-31 15:45:58 +00:00
|
|
|
bool is_prepared = false;
|
2017-04-01 07:20:54 +00:00
|
|
|
const size_t flush_interval_milliseconds;
|
2019-01-14 19:22:09 +00:00
|
|
|
ThreadFromGlobalPool saving_thread;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
/* Data shared between callers of add()/flush()/shutdown(), and the saving thread */
|
|
|
|
std::mutex mutex;
|
2020-02-09 14:15:29 +00:00
|
|
|
// Queue is bounded. But its size is quite large to not block in all normal cases.
|
2020-01-31 15:45:58 +00:00
|
|
|
std::vector<LogElement> queue;
|
|
|
|
// An always-incrementing index of the first message currently in the queue.
|
|
|
|
// We use it to give a global sequential index to every message, so that we can wait
|
|
|
|
// until a particular message is flushed. This is used to implement synchronous log
|
|
|
|
// flushing for SYSTEM FLUSH LOGS.
|
|
|
|
uint64_t queue_front_index = 0;
|
|
|
|
bool is_shutdown = false;
|
|
|
|
std::condition_variable flush_event;
|
|
|
|
// Requested to flush logs up to this index, exclusive
|
|
|
|
uint64_t requested_flush_before = 0;
|
|
|
|
// Flushed log up to this index, exclusive
|
|
|
|
uint64_t flushed_before = 0;
|
|
|
|
|
|
|
|
void savingThreadFunction();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/** Creates new table if it does not exist.
|
|
|
|
* Renames old table if its structure is not suitable.
|
|
|
|
* This cannot be done in constructor to avoid deadlock while renaming a table under locked Context when SystemLog object is created.
|
|
|
|
*/
|
|
|
|
void prepareTable();
|
2019-03-21 19:22:38 +00:00
|
|
|
|
2019-06-19 12:28:34 +00:00
|
|
|
/// flushImpl can be executed only in saving_thread.
|
2020-01-31 15:45:58 +00:00
|
|
|
void flushImpl(const std::vector<LogElement> & to_flush, uint64_t to_flush_end);
|
2016-10-27 17:48:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <typename LogElement>
|
|
|
|
SystemLog<LogElement>::SystemLog(Context & context_,
|
2017-04-01 07:20:54 +00:00
|
|
|
const String & database_name_,
|
|
|
|
const String & table_name_,
|
2017-09-17 18:49:43 +00:00
|
|
|
const String & storage_def_,
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t flush_interval_milliseconds_)
|
2020-02-17 19:28:25 +00:00
|
|
|
: context(context_)
|
|
|
|
, table_id(database_name_, table_name_)
|
|
|
|
, storage_def(storage_def_),
|
2017-04-01 07:20:54 +00:00
|
|
|
flush_interval_milliseconds(flush_interval_milliseconds_)
|
2016-10-27 17:48:12 +00:00
|
|
|
{
|
2020-03-02 17:25:36 +00:00
|
|
|
assert(database_name_ == DatabaseCatalog::SYSTEM_DATABASE);
|
2020-02-17 19:28:25 +00:00
|
|
|
log = &Logger::get("SystemLog (" + database_name_ + "." + table_name_ + ")");
|
2019-08-13 14:32:32 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
saving_thread = ThreadFromGlobalPool([this] { savingThreadFunction(); });
|
2016-10-27 17:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-19 12:28:34 +00:00
|
|
|
template <typename LogElement>
|
|
|
|
void SystemLog<LogElement>::add(const LogElement & element)
|
|
|
|
{
|
2020-03-15 00:22:06 +00:00
|
|
|
/// Memory can be allocated while resizing on queue.push_back.
|
|
|
|
/// The size of allocation can be in order of a few megabytes.
|
|
|
|
/// But this should not be accounted for query memory usage.
|
|
|
|
/// Otherwise the tests like 01017_uniqCombined_memory_usage.sql will be flacky.
|
|
|
|
auto temporarily_disable_memory_tracker = getCurrentMemoryTrackerActionLock();
|
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
std::unique_lock lock(mutex);
|
|
|
|
|
2019-06-19 12:28:34 +00:00
|
|
|
if (is_shutdown)
|
|
|
|
return;
|
|
|
|
|
2020-02-14 13:09:51 +00:00
|
|
|
if (queue.size() == DBMS_SYSTEM_LOG_QUEUE_SIZE / 2)
|
2020-01-31 15:45:58 +00:00
|
|
|
{
|
|
|
|
// The queue more than half full, time to flush.
|
2020-02-14 13:09:51 +00:00
|
|
|
// We only check for strict equality, because messages are added one
|
|
|
|
// by one, under exclusive lock, so we will see each message count.
|
|
|
|
// It is enough to only wake the flushing thread once, after the message
|
|
|
|
// count increases past half available size.
|
2020-01-31 15:45:58 +00:00
|
|
|
const uint64_t queue_end = queue_front_index + queue.size();
|
|
|
|
if (requested_flush_before < queue_end)
|
|
|
|
requested_flush_before = queue_end;
|
2020-03-15 00:22:06 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
flush_event.notify_all();
|
2020-02-14 13:09:51 +00:00
|
|
|
LOG_INFO(log, "Queue is half full for system log '" + demangle(typeid(*this).name()) + "'.");
|
2020-01-31 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (queue.size() >= DBMS_SYSTEM_LOG_QUEUE_SIZE)
|
|
|
|
{
|
|
|
|
// TextLog sets its logger level to 0, so this log is a noop and there
|
|
|
|
// is no recursive logging.
|
|
|
|
LOG_ERROR(log, "Queue is full for system log '" + demangle(typeid(*this).name()) + "'.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
queue.push_back(element);
|
2019-06-19 12:28:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename LogElement>
|
|
|
|
void SystemLog<LogElement>::flush()
|
|
|
|
{
|
2020-01-31 15:45:58 +00:00
|
|
|
std::unique_lock lock(mutex);
|
|
|
|
|
2019-06-19 12:28:34 +00:00
|
|
|
if (is_shutdown)
|
|
|
|
return;
|
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
const uint64_t queue_end = queue_front_index + queue.size();
|
|
|
|
|
|
|
|
if (requested_flush_before < queue_end)
|
|
|
|
{
|
|
|
|
requested_flush_before = queue_end;
|
2020-02-14 13:09:51 +00:00
|
|
|
flush_event.notify_all();
|
2020-01-31 15:45:58 +00:00
|
|
|
}
|
2019-06-19 15:38:06 +00:00
|
|
|
|
2020-02-14 13:09:51 +00:00
|
|
|
// Use an arbitrary timeout to avoid endless waiting.
|
2020-01-31 15:45:58 +00:00
|
|
|
const int timeout_seconds = 60;
|
|
|
|
bool result = flush_event.wait_for(lock, std::chrono::seconds(timeout_seconds),
|
|
|
|
[&] { return flushed_before >= queue_end; });
|
2019-06-19 12:28:34 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
if (!result)
|
|
|
|
{
|
|
|
|
throw Exception("Timeout exceeded (" + toString(timeout_seconds) + " s) while flushing system log '" + demangle(typeid(*this).name()) + "'.",
|
|
|
|
ErrorCodes::TIMEOUT_EXCEEDED);
|
|
|
|
}
|
2019-06-19 12:28:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-27 17:48:12 +00:00
|
|
|
template <typename LogElement>
|
2020-04-13 01:33:05 +00:00
|
|
|
void SystemLog<LogElement>::stopFlushThread()
|
2016-10-27 17:48:12 +00:00
|
|
|
{
|
2020-01-31 15:45:58 +00:00
|
|
|
{
|
|
|
|
std::unique_lock lock(mutex);
|
|
|
|
|
|
|
|
if (is_shutdown)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
is_shutdown = true;
|
|
|
|
|
|
|
|
/// Tell thread to shutdown.
|
|
|
|
flush_event.notify_all();
|
|
|
|
}
|
2019-03-21 19:22:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
saving_thread.join();
|
2016-10-27 17:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename LogElement>
|
2020-01-31 15:45:58 +00:00
|
|
|
void SystemLog<LogElement>::savingThreadFunction()
|
2016-10-27 17:48:12 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
setThreadName("SystemLogFlush");
|
|
|
|
|
2020-02-14 13:09:51 +00:00
|
|
|
std::vector<LogElement> to_flush;
|
2020-01-31 15:45:58 +00:00
|
|
|
bool exit_this_thread = false;
|
|
|
|
while (!exit_this_thread)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2020-01-31 15:45:58 +00:00
|
|
|
// The end index (exclusive, like std end()) of the messages we are
|
|
|
|
// going to flush.
|
|
|
|
uint64_t to_flush_end = 0;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
{
|
|
|
|
std::unique_lock lock(mutex);
|
|
|
|
flush_event.wait_for(lock, std::chrono::milliseconds(flush_interval_milliseconds),
|
|
|
|
[&] () { return requested_flush_before > flushed_before || is_shutdown; });
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
queue_front_index += queue.size();
|
|
|
|
to_flush_end = queue_front_index;
|
2020-02-14 13:09:51 +00:00
|
|
|
// Swap with existing array from previous flush, to save memory
|
|
|
|
// allocations.
|
|
|
|
to_flush.resize(0);
|
2020-01-31 15:45:58 +00:00
|
|
|
queue.swap(to_flush);
|
2018-06-19 20:30:35 +00:00
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
exit_this_thread = is_shutdown;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
if (to_flush.empty())
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-01-31 15:45:58 +00:00
|
|
|
continue;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-31 15:45:58 +00:00
|
|
|
flushImpl(to_flush, to_flush_end);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 17:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename LogElement>
|
2020-01-31 15:45:58 +00:00
|
|
|
void SystemLog<LogElement>::flushImpl(const std::vector<LogElement> & to_flush, uint64_t to_flush_end)
|
2016-10-27 17:48:12 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
try
|
|
|
|
{
|
2017-04-27 05:58:16 +00:00
|
|
|
LOG_TRACE(log, "Flushing system log");
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-03-29 20:54:57 +00:00
|
|
|
/// We check for existence of the table and create it as needed at every flush.
|
|
|
|
/// This is done to allow user to drop the table at any moment (new empty table will be created automatically).
|
|
|
|
/// BTW, flush method is called from single thread.
|
2018-03-29 13:57:16 +00:00
|
|
|
prepareTable();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
Block block = LogElement::createBlock();
|
2020-01-31 15:45:58 +00:00
|
|
|
for (const auto & elem : to_flush)
|
2017-04-01 07:20:54 +00:00
|
|
|
elem.appendToBlock(block);
|
2017-06-05 13:59:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// We write to table indirectly, using InterpreterInsertQuery.
|
|
|
|
/// This is needed to support DEFAULT-columns in table.
|
|
|
|
|
|
|
|
std::unique_ptr<ASTInsertQuery> insert = std::make_unique<ASTInsertQuery>();
|
2020-03-02 20:23:58 +00:00
|
|
|
insert->table_id = table_id;
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr(insert.release());
|
|
|
|
|
|
|
|
InterpreterInsertQuery interpreter(query_ptr, context);
|
|
|
|
BlockIO io = interpreter.execute();
|
|
|
|
|
|
|
|
io.out->writePrefix();
|
|
|
|
io.out->write(block);
|
|
|
|
io.out->writeSuffix();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
2019-06-19 12:28:34 +00:00
|
|
|
}
|
2020-01-31 15:45:58 +00:00
|
|
|
|
|
|
|
std::unique_lock lock(mutex);
|
|
|
|
flushed_before = to_flush_end;
|
|
|
|
flush_event.notify_all();
|
2016-10-27 17:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-23 20:41:39 +00:00
|
|
|
template <typename LogElement>
|
|
|
|
void SystemLog<LogElement>::prepareTable()
|
|
|
|
{
|
2020-02-17 19:28:25 +00:00
|
|
|
String description = table_id.getNameForLogs();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2020-02-17 19:28:25 +00:00
|
|
|
table = DatabaseCatalog::instance().tryGetTable(table_id);
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (table)
|
|
|
|
{
|
|
|
|
const Block expected = LogElement::createBlock();
|
|
|
|
const Block actual = table->getSampleBlockNonMaterialized();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!blocksHaveEqualStructure(actual, expected))
|
|
|
|
{
|
2017-06-02 21:37:28 +00:00
|
|
|
/// Rename the existing table.
|
2017-04-01 07:20:54 +00:00
|
|
|
int suffix = 0;
|
2020-03-13 15:41:36 +00:00
|
|
|
while (DatabaseCatalog::instance().isTableExist({table_id.database_name, table_id.table_name + "_" + toString(suffix)}))
|
2017-04-01 07:20:54 +00:00
|
|
|
++suffix;
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto rename = std::make_shared<ASTRenameQuery>();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTRenameQuery::Table from;
|
2020-02-17 19:28:25 +00:00
|
|
|
from.database = table_id.database_name;
|
|
|
|
from.table = table_id.table_name;
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTRenameQuery::Table to;
|
2020-02-17 19:28:25 +00:00
|
|
|
to.database = table_id.database_name;
|
|
|
|
to.table = table_id.table_name + "_" + toString(suffix);
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTRenameQuery::Element elem;
|
|
|
|
elem.from = from;
|
|
|
|
elem.to = to;
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
rename->elements.emplace_back(elem);
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_DEBUG(log, "Existing table " << description << " for system log has obsolete or different structure."
|
2020-04-13 01:33:05 +00:00
|
|
|
" Renaming it to " << backQuoteIfNeed(to.table));
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
InterpreterRenameQuery(rename, context).execute();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// The required table will be created.
|
2017-04-01 07:20:54 +00:00
|
|
|
table = nullptr;
|
|
|
|
}
|
2018-03-29 13:57:16 +00:00
|
|
|
else if (!is_prepared)
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_DEBUG(log, "Will use existing table " << description << " for " + LogElement::name());
|
|
|
|
}
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!table)
|
|
|
|
{
|
2017-06-02 21:37:28 +00:00
|
|
|
/// Create the table.
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_DEBUG(log, "Creating new table " << description << " for " + LogElement::name());
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2020-04-13 01:33:05 +00:00
|
|
|
auto create = getCreateTableQuery();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2018-01-18 23:40:32 +00:00
|
|
|
InterpreterCreateQuery interpreter(create, context);
|
|
|
|
interpreter.setInternal(true);
|
|
|
|
interpreter.execute();
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2020-02-17 19:28:25 +00:00
|
|
|
table = DatabaseCatalog::instance().getTable(table_id);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-11-23 20:41:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
is_prepared = true;
|
2016-11-23 20:41:39 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 01:33:05 +00:00
|
|
|
|
|
|
|
template <typename LogElement>
|
|
|
|
ASTPtr SystemLog<LogElement>::getCreateTableQuery()
|
|
|
|
{
|
|
|
|
auto create = std::make_shared<ASTCreateQuery>();
|
|
|
|
|
|
|
|
create->database = table_id.database_name;
|
|
|
|
create->table = table_id.table_name;
|
|
|
|
|
|
|
|
Block sample = LogElement::createBlock();
|
|
|
|
|
|
|
|
auto new_columns_list = std::make_shared<ASTColumns>();
|
|
|
|
new_columns_list->set(new_columns_list->columns, InterpreterCreateQuery::formatColumns(sample.getNamesAndTypesList()));
|
|
|
|
create->set(create->columns_list, new_columns_list);
|
|
|
|
|
|
|
|
ParserStorage storage_parser;
|
|
|
|
ASTPtr storage_ast = parseQuery(
|
|
|
|
storage_parser, storage_def.data(), storage_def.data() + storage_def.size(),
|
2020-04-15 20:28:05 +00:00
|
|
|
"Storage to create table for " + LogElement::name(), 0, DBMS_DEFAULT_MAX_PARSER_DEPTH);
|
2020-04-13 01:33:05 +00:00
|
|
|
create->set(create->storage, storage_ast);
|
|
|
|
|
|
|
|
return create;
|
|
|
|
}
|
|
|
|
|
2016-10-27 17:48:12 +00:00
|
|
|
}
|