ClickHouse/src/Interpreters/loadMetadata.cpp

195 lines
6.4 KiB
C++
Raw Normal View History

#include <Common/ThreadPool.h>
2011-10-30 11:30:52 +00:00
#include <Poco/DirectoryIterator.h>
#include <Parsers/ParserCreateQuery.h>
#include <Parsers/ASTCreateQuery.h>
#include <Parsers/parseQuery.h>
2011-10-30 11:30:52 +00:00
#include <Interpreters/InterpreterCreateQuery.h>
#include <Interpreters/Context.h>
#include <Interpreters/loadMetadata.h>
2011-10-30 11:30:52 +00:00
#include <Databases/DatabaseOrdinary.h>
#include <IO/ReadBufferFromFile.h>
2018-06-05 19:46:49 +00:00
#include <IO/ReadHelpers.h>
#include <Common/escapeForFileName.h>
#include <Common/typeid_cast.h>
2020-07-02 20:39:31 +00:00
#include <Common/StringUtils/StringUtils.h>
2021-04-28 10:42:07 +00:00
#include <filesystem>
2021-04-28 10:42:07 +00:00
namespace fs = std::filesystem;
2011-10-30 11:30:52 +00:00
namespace DB
{
Squashed commit of the following: commit f9b478181cd49224154cc350fb57df7121842f1c Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sat Mar 19 04:06:36 2016 +0300 Database engines: development [#METR-19997]. commit f7a10a67761ccfd05f3dac32d6444920cd8d4d60 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sat Mar 19 03:44:37 2016 +0300 Database engines: development [#METR-19997]. commit bd98a8558e98bad2bed278e5762c4e0fc66e6f38 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sat Mar 19 00:33:59 2016 +0300 Database engines: development [#METR-19997]. commit 19712fd884c22a4e2c2b67474086dea8f44e7c7b Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sat Mar 19 00:03:11 2016 +0300 Database engines: development [#METR-19997]. commit 50274d6df7e91fcc34aab8a8c72347daa2c6512f Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 23:24:57 2016 +0300 Database engines: development [#METR-19997]. commit 4a0b99b19b34e90ef8b7be2d199f6232e36ef3f7 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 22:50:36 2016 +0300 Database engines: development [#METR-19997]. commit 44ff3ebba7a3e460a27a89f31ddf199dbea1d182 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 15:09:17 2016 +0300 Database engines: development [#METR-19997]. commit 137c31f3004cfd282473b6acb01cbe1b4ca2aadd Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 03:26:34 2016 +0300 Database engines: development [#METR-19997]. commit aa4c0496d4afe4a691164254be2bd5600542b38a Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 03:22:59 2016 +0300 Database engines: development [#METR-19997]. commit 5a94d1f0607450a2dac28a4d7df8b1393a864c23 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Fri Mar 18 01:02:40 2016 +0300 Database engines: development [#METR-19997]. commit 50fd5b52ea1141955a5dfba0dcb191f3289ac25b Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Thu Mar 17 23:23:40 2016 +0300 Database engines: development [#METR-19997]. commit a333d91b058e4f56dd83a6d2878c3c2bd8efc002 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Thu Mar 17 20:29:07 2016 +0300 Database engines: development [#METR-19997]. commit f81d366e7ac8348436f2698d040f8e341743a024 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Thu Mar 17 01:30:23 2016 +0300 Database engines: development [#METR-19997]. commit d0696860c9060827896214c08d147c759ea79376 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Wed Mar 16 21:55:31 2016 +0300 Database engines: development [#METR-19997]. commit 46a168c2ada140a0e95cd8d4b9d8ba9bac855d11 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Wed Mar 16 08:00:58 2016 +0300 Database engines: development [#METR-19997]. commit 20a2bad161454225fc1b5f9b919b842fbebc3231 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Wed Mar 16 06:51:10 2016 +0300 Database engines: development [#METR-19997]. commit ca0a77fcc2a8d0b276eb3743c53551ad3fe16314 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Wed Mar 16 06:02:20 2016 +0300 Reverted erroneous modification [#METR-19997]. commit 1370bdcc4594182f6ef2b146f9afabfe1c295080 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Wed Mar 16 00:41:34 2016 +0300 Database engines: development [#METR-19997]. commit 16e72c67041cae6471509d3f0f3d4a9aa7b7dc0f Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Mar 15 00:41:48 2016 +0300 Database engines: development [#METR-19997].
2016-03-19 01:18:49 +00:00
static void executeCreateQuery(
const String & query,
2021-05-31 14:49:02 +00:00
ContextMutablePtr context,
const String & database,
const String & file_name,
bool has_force_restore_data_flag)
2011-10-30 11:30:52 +00:00
{
ParserCreateQuery parser;
ASTPtr ast = parseQuery(
parser, query.data(), query.data() + query.size(), "in file " + file_name, 0, context->getSettingsRef().max_parser_depth);
2011-10-30 11:30:52 +00:00
auto & ast_create_query = ast->as<ASTCreateQuery &>();
ast_create_query.database = database;
2012-03-09 03:06:09 +00:00
InterpreterCreateQuery interpreter(ast, context);
interpreter.setInternal(true);
interpreter.setForceAttach(true);
interpreter.setForceRestoreData(has_force_restore_data_flag);
interpreter.execute();
}
2017-06-18 05:43:29 +00:00
static void loadDatabase(
2021-05-31 14:49:02 +00:00
ContextMutablePtr context,
2017-06-18 05:43:29 +00:00
const String & database,
const String & database_path,
bool force_restore_data)
{
String database_attach_query;
String database_metadata_file = database_path + ".sql";
2021-04-28 10:42:07 +00:00
if (fs::exists(fs::path(database_metadata_file)))
2017-06-18 05:43:29 +00:00
{
2020-03-17 23:51:35 +00:00
/// There is .sql file with database creation statement.
2017-06-18 05:43:29 +00:00
ReadBufferFromFile in(database_metadata_file, 1024);
readStringUntilEOF(database_attach_query, in);
}
2021-04-28 10:42:07 +00:00
else if (fs::exists(fs::path(database_path)))
2019-11-28 19:40:51 +00:00
{
/// Database exists, but .sql file is absent. It's old-style Ordinary database (e.g. system or default)
database_attach_query = "ATTACH DATABASE " + backQuoteIfNeed(database) + " ENGINE = Ordinary";
}
2017-06-18 05:43:29 +00:00
else
2019-11-28 19:40:51 +00:00
{
/// It's first server run and we need create default and system databases.
/// .sql file with database engine will be written for CREATE query.
database_attach_query = "CREATE DATABASE " + backQuoteIfNeed(database);
}
2017-06-18 05:43:29 +00:00
2020-08-10 01:06:06 +00:00
try
{
executeCreateQuery(database_attach_query, context, database, database_metadata_file, force_restore_data);
2020-08-10 01:06:06 +00:00
}
catch (Exception & e)
{
e.addMessage(fmt::format("while loading database {} from path {}", backQuote(database), database_path));
2020-08-10 01:06:06 +00:00
throw;
}
2017-06-18 05:43:29 +00:00
}
2021-05-31 14:49:02 +00:00
void loadMetadata(ContextMutablePtr context, const String & default_database_name)
2011-10-30 11:30:52 +00:00
{
Poco::Logger * log = &Poco::Logger::get("loadMetadata");
String path = context->getPath() + "metadata";
2011-10-30 11:30:52 +00:00
/** There may exist 'force_restore_data' file, that means,
* skip safety threshold on difference of data parts while initializing tables.
* This file is deleted after successful loading of tables.
* (flag is "one-shot")
*/
2021-04-28 10:42:07 +00:00
auto force_restore_data_flag_file = fs::path(context->getFlagsPath()) / "force_restore_data";
bool has_force_restore_data_flag = fs::exists(force_restore_data_flag_file);
/// Loop over databases.
std::map<String, String> databases;
2021-04-28 10:42:07 +00:00
fs::directory_iterator dir_end;
for (fs::directory_iterator it(path); it != dir_end; ++it)
{
2021-04-28 10:42:07 +00:00
if (it->is_symlink())
2020-07-17 17:54:24 +00:00
continue;
2021-04-28 10:42:07 +00:00
const auto current_file = it->path().filename().string();
if (!it->is_directory())
2020-07-02 20:39:31 +00:00
{
2020-11-30 17:52:32 +00:00
/// TODO: DETACH DATABASE PERMANENTLY ?
2021-05-21 21:12:46 +00:00
if (fs::path(current_file).extension() == ".sql")
2020-07-02 20:39:31 +00:00
{
2021-05-25 13:45:46 +00:00
String db_name = fs::path(current_file).stem();
2020-08-12 20:40:13 +00:00
if (db_name != DatabaseCatalog::SYSTEM_DATABASE)
2021-05-21 21:12:46 +00:00
databases.emplace(unescapeForFileName(db_name), fs::path(path) / db_name);
2020-07-02 20:39:31 +00:00
}
/// Temporary fails may be left from previous server runs.
2021-05-21 21:12:46 +00:00
if (fs::path(current_file).extension() == ".tmp")
{
2021-04-28 10:42:07 +00:00
LOG_WARNING(log, "Removing temporary file {}", it->path().string());
try
{
2021-04-28 10:42:07 +00:00
fs::remove(it->path());
}
catch (...)
{
/// It does not prevent server to startup.
tryLogCurrentException(log);
}
}
continue;
2020-07-02 20:39:31 +00:00
}
2011-10-30 11:30:52 +00:00
/// For '.svn', '.gitignore' directory and similar.
2021-04-28 10:42:07 +00:00
if (current_file.at(0) == '.')
continue;
2012-03-09 03:56:12 +00:00
2021-04-28 10:42:07 +00:00
if (current_file == DatabaseCatalog::SYSTEM_DATABASE)
2017-06-18 05:43:29 +00:00
continue;
2021-04-28 10:42:07 +00:00
databases.emplace(unescapeForFileName(current_file), it->path().string());
}
2020-04-23 18:00:43 +00:00
/// clickhouse-local creates DatabaseMemory as default database by itself
/// For clickhouse-server we need create default database
bool create_default_db_if_not_exists = !default_database_name.empty();
bool metadata_dir_for_default_db_already_exists = databases.count(default_database_name);
if (create_default_db_if_not_exists && !metadata_dir_for_default_db_already_exists)
2019-12-12 12:30:31 +00:00
databases.emplace(default_database_name, path + "/" + escapeForFileName(default_database_name));
2019-11-28 19:40:51 +00:00
2019-08-03 11:02:40 +00:00
for (const auto & [name, db_path] : databases)
loadDatabase(context, name, db_path, has_force_restore_data_flag);
2017-06-18 05:43:29 +00:00
if (has_force_restore_data_flag)
2018-12-10 18:56:37 +00:00
{
try
{
2021-04-28 10:42:07 +00:00
fs::remove(force_restore_data_flag_file);
}
catch (...)
{
2020-01-11 09:50:41 +00:00
tryLogCurrentException("Load metadata", "Can't remove force restore file to enable data sanity checks");
}
2018-12-10 18:56:37 +00:00
}
2017-06-18 05:43:29 +00:00
}
2021-05-31 14:49:02 +00:00
void loadMetadataSystem(ContextMutablePtr context)
2017-06-18 05:43:29 +00:00
{
String path = context->getPath() + "metadata/" + DatabaseCatalog::SYSTEM_DATABASE;
2020-08-13 18:05:31 +00:00
String metadata_file = path + ".sql";
2021-04-28 10:42:07 +00:00
if (fs::exists(fs::path(path)) || fs::exists(fs::path(metadata_file)))
{
2017-06-18 05:43:29 +00:00
/// 'has_force_restore_data_flag' is true, to not fail on loading query_log table, if it is corrupted.
2020-08-12 20:40:13 +00:00
loadDatabase(context, DatabaseCatalog::SYSTEM_DATABASE, path, true);
}
else
{
/// Initialize system database manually
2020-08-12 20:40:13 +00:00
String database_create_query = "CREATE DATABASE ";
database_create_query += DatabaseCatalog::SYSTEM_DATABASE;
database_create_query += " ENGINE=Atomic";
executeCreateQuery(database_create_query, context, DatabaseCatalog::SYSTEM_DATABASE, "<no file>", true);
}
2011-10-30 11:30:52 +00:00
}
}