mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
After CR fixes - better & simpler. Issue in Context::shutdown fixed
This commit is contained in:
parent
58df7f7883
commit
f3a18864d5
@ -37,6 +37,7 @@
|
|||||||
#include <boost/program_options.hpp>
|
#include <boost/program_options.hpp>
|
||||||
#include <common/argsToConfig.h>
|
#include <common/argsToConfig.h>
|
||||||
#include <Common/TerminalSize.h>
|
#include <Common/TerminalSize.h>
|
||||||
|
#include <Common/randomSeed.h>
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
|
|
||||||
@ -148,20 +149,11 @@ void LocalServer::tryInitPath()
|
|||||||
/// or it can be some leftovers from other clickhouse-local runs
|
/// or it can be some leftovers from other clickhouse-local runs
|
||||||
/// as we can't accurately distinguish those situations we don't touch any existent folders
|
/// as we can't accurately distinguish those situations we don't touch any existent folders
|
||||||
/// we just try to pick some free name for our working folder
|
/// we just try to pick some free name for our working folder
|
||||||
size_t retries = 0;
|
|
||||||
|
|
||||||
while (1)
|
default_path = parent_folder / fmt::format("clickhouse-local-{}-{}-{}", getpid(), time(nullptr), randomSeed());
|
||||||
{
|
|
||||||
retries++;
|
|
||||||
|
|
||||||
default_path = parent_folder / fmt::format("clickhouse-local-{}-{}-{}", getpid(), time(nullptr), retries);
|
if (exists(default_path))
|
||||||
|
throw Exception(ErrorCodes::FILE_ALREADY_EXISTS, "Unsuccessfull attempt to create working directory: {} exist!", default_path.string());
|
||||||
if (!exists(default_path))
|
|
||||||
break;
|
|
||||||
|
|
||||||
if (retries >= 20)
|
|
||||||
throw Exception(ErrorCodes::FILE_ALREADY_EXISTS, "Can not find a name for a temporary folder: {} exist!", default_path.string());
|
|
||||||
}
|
|
||||||
|
|
||||||
create_directory(default_path);
|
create_directory(default_path);
|
||||||
temporary_directory_to_delete = default_path;
|
temporary_directory_to_delete = default_path;
|
||||||
@ -467,14 +459,6 @@ void LocalServer::cleanup()
|
|||||||
{
|
{
|
||||||
const auto dir = *temporary_directory_to_delete;
|
const auto dir = *temporary_directory_to_delete;
|
||||||
temporary_directory_to_delete.reset();
|
temporary_directory_to_delete.reset();
|
||||||
|
|
||||||
if (dir.string().find(fmt::format("clickhouse-local-{}", getpid())) == std::string::npos)
|
|
||||||
{
|
|
||||||
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
||||||
"The name of working directory of clickhouse-local '{}' doesn't look like temporary name. Will not delete it",
|
|
||||||
dir.string()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
LOG_DEBUG(&logger(), "Removing temporary directory: {}", dir.string());
|
LOG_DEBUG(&logger(), "Removing temporary directory: {}", dir.string());
|
||||||
remove_all(dir);
|
remove_all(dir);
|
||||||
}
|
}
|
||||||
|
@ -2028,12 +2028,15 @@ void Context::reloadConfig() const
|
|||||||
|
|
||||||
|
|
||||||
void Context::shutdown()
|
void Context::shutdown()
|
||||||
|
{
|
||||||
|
if (shared->merge_tree_disk_selector)
|
||||||
{
|
{
|
||||||
for (auto & [disk_name, disk] : getDisksMap())
|
for (auto & [disk_name, disk] : getDisksMap())
|
||||||
{
|
{
|
||||||
LOG_INFO(shared->log, "Shutdown disk {}", disk_name);
|
LOG_INFO(shared->log, "Shutdown disk {}", disk_name);
|
||||||
disk->shutdown();
|
disk->shutdown();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
shared->shutdown();
|
shared->shutdown();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user