2017-03-03 00:24:56 +00:00
|
|
|
#include "Server.h"
|
2014-04-15 16:39:56 +00:00
|
|
|
|
2017-03-03 18:59:42 +00:00
|
|
|
#include <memory>
|
2017-03-03 00:24:56 +00:00
|
|
|
#include <sys/resource.h>
|
2017-03-03 18:59:42 +00:00
|
|
|
#include <Poco/DirectoryIterator.h>
|
2015-04-16 06:12:35 +00:00
|
|
|
#include <Poco/Net/DNS.h>
|
2017-03-03 18:59:42 +00:00
|
|
|
#include <Poco/Net/HTTPServerRequest.h>
|
2016-06-25 03:06:36 +00:00
|
|
|
#include <Poco/Net/NetException.h>
|
2014-02-13 07:17:22 +00:00
|
|
|
#include <Poco/Util/XMLConfiguration.h>
|
2016-10-25 12:27:09 +00:00
|
|
|
#include <common/ApplicationServerExt.h>
|
2015-09-29 19:19:54 +00:00
|
|
|
#include <common/ErrorHandlers.h>
|
2015-10-05 00:33:43 +00:00
|
|
|
#include <ext/scope_guard.hpp>
|
2017-03-03 18:59:42 +00:00
|
|
|
#include <zkutil/ZooKeeper.h>
|
2017-03-21 19:08:09 +00:00
|
|
|
#include <zkutil/ZooKeeperNodeCache.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/Macros.h>
|
|
|
|
#include <Common/StringUtils.h>
|
|
|
|
#include <Common/getFQDNOrHostName.h>
|
|
|
|
#include <Common/getMultipleKeysFromConfig.h>
|
|
|
|
#include <Databases/DatabaseOrdinary.h>
|
|
|
|
#include <IO/HTTPCommon.h>
|
|
|
|
#include <Interpreters/AsynchronousMetrics.h>
|
|
|
|
#include <Interpreters/ProcessList.h>
|
|
|
|
#include <Interpreters/loadMetadata.h>
|
|
|
|
#include <Storages/MergeTree/ReshardingWorker.h>
|
|
|
|
#include <Storages/StorageReplicatedMergeTree.h>
|
|
|
|
#include <Storages/System/attachSystemTables.h>
|
2017-03-03 18:59:42 +00:00
|
|
|
#include "ConfigReloader.h"
|
2012-03-09 15:46:52 +00:00
|
|
|
#include "HTTPHandler.h"
|
2014-03-21 13:42:14 +00:00
|
|
|
#include "InterserverIOHTTPHandler.h"
|
2016-01-17 13:34:36 +00:00
|
|
|
#include "MetricsTransmitter.h"
|
2017-03-03 18:59:42 +00:00
|
|
|
#include "ReplicasStatusHandler.h"
|
2016-01-17 13:34:36 +00:00
|
|
|
#include "StatusFile.h"
|
2017-03-03 18:59:42 +00:00
|
|
|
#include "TCPHandler.h"
|
2012-03-09 03:06:09 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/config.h>
|
2017-03-28 20:30:57 +00:00
|
|
|
#if Poco_NetSSL_FOUND
|
|
|
|
#include <Poco/Net/Context.h>
|
|
|
|
#include <Poco/Net/SecureServerSocket.h>
|
|
|
|
#endif
|
2017-03-21 19:08:09 +00:00
|
|
|
|
2017-04-21 17:47:27 +00:00
|
|
|
#include <Functions/registerFunctions.h>
|
|
|
|
|
2012-03-09 03:06:09 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2016-09-21 15:22:38 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int NO_ELEMENTS_IN_CONFIG;
|
|
|
|
extern const int SUPPORT_IS_DISABLED;
|
2016-09-21 15:22:38 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 20:08:18 +00:00
|
|
|
|
2016-10-13 20:01:18 +00:00
|
|
|
/// Response with "Ok.\n". Used for availability checks.
|
2012-03-09 03:06:09 +00:00
|
|
|
class PingRequestHandler : public Poco::Net::HTTPRequestHandler
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
setResponseDefaultHeaders(response);
|
|
|
|
const char * data = "Ok.\n";
|
|
|
|
response.sendBuffer(data, strlen(data));
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException("PingRequestHandler");
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:08:18 +00:00
|
|
|
};
|
|
|
|
|
2017-03-04 02:00:21 +00:00
|
|
|
/// Response with custom string. Can be used for browser.
|
|
|
|
class RootRequestHandler : public Poco::Net::HTTPRequestHandler
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
setResponseDefaultHeaders(response);
|
|
|
|
response.setContentType("text/html; charset=UTF-8");
|
|
|
|
const std::string data = Poco::Util::Application::instance().config().getString("http_server_default_response", "Ok.\n");
|
|
|
|
response.sendBuffer(data.data(), data.size());
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException("RootRequestHandler");
|
|
|
|
}
|
|
|
|
}
|
2017-03-04 02:00:21 +00:00
|
|
|
};
|
|
|
|
|
2015-11-05 20:08:18 +00:00
|
|
|
|
2016-10-13 20:01:18 +00:00
|
|
|
/// Response with 404 and verbose description.
|
2015-11-05 20:08:18 +00:00
|
|
|
class NotFoundHandler : public Poco::Net::HTTPRequestHandler
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
response.setStatusAndReason(Poco::Net::HTTPResponse::HTTP_NOT_FOUND);
|
|
|
|
response.send() << "There is no handle " << request.getURI() << "\n\n"
|
|
|
|
<< "Use / or /ping for health checks.\n"
|
|
|
|
<< "Or /replicas_status for more sophisticated health checks.\n\n"
|
|
|
|
<< "Send queries from your program with POST method or GET /?query=...\n\n"
|
|
|
|
<< "Use clickhouse-client:\n\n"
|
|
|
|
<< "For interactive data analysis:\n"
|
|
|
|
<< " clickhouse-client\n\n"
|
|
|
|
<< "For batch query processing:\n"
|
|
|
|
<< " clickhouse-client --query='SELECT 1' > result\n"
|
|
|
|
<< " clickhouse-client < query > result\n";
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException("NotFoundHandler");
|
|
|
|
}
|
|
|
|
}
|
2012-03-09 03:06:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-09-25 16:28:17 +00:00
|
|
|
template <typename HandlerType>
|
2012-12-14 11:21:07 +00:00
|
|
|
class HTTPRequestHandlerFactory : public Poco::Net::HTTPRequestHandlerFactory
|
2012-03-09 03:06:09 +00:00
|
|
|
{
|
2012-12-14 11:21:07 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
Server & server;
|
|
|
|
Logger * log;
|
|
|
|
std::string name;
|
2014-07-16 00:53:56 +00:00
|
|
|
|
2012-12-14 11:21:07 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
HTTPRequestHandlerFactory(Server & server_, const std::string & name_) : server(server_), log(&Logger::get(name_)), name(name_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Poco::Net::HTTPRequestHandler * createRequestHandler(const Poco::Net::HTTPServerRequest & request) override
|
|
|
|
{
|
|
|
|
LOG_TRACE(log,
|
|
|
|
"HTTP Request for " << name << ". "
|
|
|
|
<< "Method: "
|
|
|
|
<< request.getMethod()
|
|
|
|
<< ", Address: "
|
|
|
|
<< request.clientAddress().toString()
|
|
|
|
<< ", User-Agent: "
|
|
|
|
<< (request.has("User-Agent") ? request.get("User-Agent") : "none"));
|
|
|
|
|
|
|
|
const auto & uri = request.getURI();
|
|
|
|
|
|
|
|
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_GET || request.getMethod() == Poco::Net::HTTPRequest::HTTP_HEAD)
|
|
|
|
{
|
|
|
|
if (uri == "/")
|
|
|
|
return new RootRequestHandler;
|
|
|
|
if (uri == "/ping")
|
|
|
|
return new PingRequestHandler;
|
|
|
|
else if (startsWith(uri, "/replicas_status"))
|
|
|
|
return new ReplicasStatusHandler(*server.global_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uri.find('?') != std::string::npos || request.getMethod() == Poco::Net::HTTPRequest::HTTP_POST)
|
|
|
|
{
|
|
|
|
return new HandlerType(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_GET || request.getMethod() == Poco::Net::HTTPRequest::HTTP_HEAD
|
|
|
|
|| request.getMethod() == Poco::Net::HTTPRequest::HTTP_POST)
|
|
|
|
{
|
|
|
|
return new NotFoundHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-12-14 11:21:07 +00:00
|
|
|
};
|
2012-03-09 03:06:09 +00:00
|
|
|
|
|
|
|
|
2012-12-14 11:21:07 +00:00
|
|
|
class TCPConnectionFactory : public Poco::Net::TCPServerConnectionFactory
|
2012-03-09 15:46:52 +00:00
|
|
|
{
|
2012-12-14 11:21:07 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
Server & server;
|
|
|
|
Logger * log;
|
2014-07-16 00:53:56 +00:00
|
|
|
|
2012-12-14 11:21:07 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
TCPConnectionFactory(Server & server_) : server(server_), log(&Logger::get("TCPConnectionFactory"))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Poco::Net::TCPServerConnection * createConnection(const Poco::Net::StreamSocket & socket) override
|
|
|
|
{
|
|
|
|
LOG_TRACE(log,
|
|
|
|
"TCP Request. "
|
|
|
|
<< "Address: "
|
|
|
|
<< socket.peerAddress().toString());
|
|
|
|
|
|
|
|
return new TCPHandler(server, socket);
|
|
|
|
}
|
2012-12-14 11:21:07 +00:00
|
|
|
};
|
2012-03-09 15:46:52 +00:00
|
|
|
|
|
|
|
|
2016-12-13 18:51:19 +00:00
|
|
|
static std::string getCanonicalPath(std::string && path)
|
2012-03-09 03:06:09 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Poco::trimInPlace(path);
|
|
|
|
if (path.empty())
|
|
|
|
throw Exception("path configuration parameter is empty");
|
|
|
|
if (path.back() != '/')
|
|
|
|
path += '/';
|
|
|
|
return path;
|
2016-12-13 18:51:19 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 13:42:29 +00:00
|
|
|
std::string Server::getDefaultCorePath() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return getCanonicalPath(config().getString("path")) + "cores";
|
2017-01-09 13:42:29 +00:00
|
|
|
}
|
2016-12-13 18:51:19 +00:00
|
|
|
|
|
|
|
int Server::main(const std::vector<std::string> & args)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Logger * log = &logger();
|
|
|
|
|
2017-04-21 17:47:27 +00:00
|
|
|
registerFunctions();
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** Context contains all that query execution is dependent:
|
|
|
|
* settings, available functions, data types, aggregate functions, databases...
|
|
|
|
*/
|
|
|
|
global_context = std::make_unique<Context>();
|
|
|
|
global_context->setGlobalContext(*global_context);
|
|
|
|
global_context->setApplicationType(Context::ApplicationType::SERVER);
|
|
|
|
|
|
|
|
bool has_zookeeper = false;
|
|
|
|
if (config().has("zookeeper"))
|
|
|
|
{
|
|
|
|
global_context->setZooKeeper(std::make_shared<zkutil::ZooKeeper>(config(), "zookeeper"));
|
|
|
|
has_zookeeper = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
zkutil::ZooKeeperNodeCache main_config_zk_node_cache([&] { return global_context->getZooKeeper(); });
|
|
|
|
if (loaded_config.has_zk_includes)
|
|
|
|
{
|
|
|
|
auto old_configuration = loaded_config.configuration;
|
|
|
|
loaded_config = ConfigProcessor().loadConfigWithZooKeeperIncludes(
|
|
|
|
config_path, main_config_zk_node_cache, /* fallback_to_preprocessed = */ true);
|
|
|
|
config().removeConfiguration(old_configuration.get());
|
|
|
|
config().add(loaded_config.configuration.duplicate(), PRIO_DEFAULT, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string path = getCanonicalPath(config().getString("path"));
|
|
|
|
std::string default_database = config().getString("default_database", "default");
|
|
|
|
|
|
|
|
global_context->setPath(path);
|
|
|
|
|
|
|
|
/// Create directories for 'path' and for default database, if not exist.
|
|
|
|
Poco::File(path + "data/" + default_database).createDirectories();
|
|
|
|
Poco::File(path + "metadata/" + default_database).createDirectories();
|
|
|
|
|
|
|
|
StatusFile status{path + "status"};
|
|
|
|
|
|
|
|
/// Try to increase limit on number of open files.
|
|
|
|
{
|
|
|
|
rlimit rlim;
|
|
|
|
if (getrlimit(RLIMIT_NOFILE, &rlim))
|
|
|
|
throw Poco::Exception("Cannot getrlimit");
|
|
|
|
|
|
|
|
if (rlim.rlim_cur == rlim.rlim_max)
|
|
|
|
{
|
|
|
|
LOG_DEBUG(log, "rlimit on number of file descriptors is " << rlim.rlim_cur);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rlim_t old = rlim.rlim_cur;
|
|
|
|
rlim.rlim_cur = config().getUInt("max_open_files", rlim.rlim_max);
|
|
|
|
int rc = setrlimit(RLIMIT_NOFILE, &rlim);
|
|
|
|
if (rc != 0)
|
|
|
|
LOG_WARNING(log,
|
|
|
|
std::string("Cannot set max number of file descriptors to ") + std::to_string(rlim.rlim_cur)
|
|
|
|
+ ". Try to specify max_open_files according to your system limits. error: "
|
|
|
|
+ strerror(errno));
|
|
|
|
else
|
|
|
|
LOG_DEBUG(log, "Set max number of file descriptors to " << rlim.rlim_cur << " (was " << old << ").");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ServerErrorHandler error_handler;
|
|
|
|
Poco::ErrorHandler::set(&error_handler);
|
|
|
|
|
|
|
|
/// Initialize DateLUT early, to not interfere with running time of first query.
|
|
|
|
LOG_DEBUG(log, "Initializing DateLUT.");
|
|
|
|
DateLUT::instance();
|
|
|
|
LOG_TRACE(log, "Initialized DateLUT with time zone `" << DateLUT::instance().getTimeZone() << "'.");
|
|
|
|
|
|
|
|
/// Directory with temporary data for processing of hard queries.
|
|
|
|
{
|
|
|
|
std::string tmp_path = config().getString("tmp_path", path + "tmp/");
|
|
|
|
global_context->setTemporaryPath(tmp_path);
|
|
|
|
Poco::File(tmp_path).createDirectories();
|
|
|
|
|
|
|
|
/// Clearing old temporary files.
|
|
|
|
Poco::DirectoryIterator dir_end;
|
|
|
|
for (Poco::DirectoryIterator it(tmp_path); it != dir_end; ++it)
|
|
|
|
{
|
|
|
|
if (it->isFile() && startsWith(it.name(), "tmp"))
|
|
|
|
{
|
|
|
|
LOG_DEBUG(log, "Removing old temporary file " << it->path());
|
|
|
|
it->remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Directory with 'flags': files indicating temporary settings for the server set by system administrator.
|
|
|
|
* Flags may be cleared automatically after being applied by the server.
|
|
|
|
* Examples: do repair of local data; clone all replicated tables from replica.
|
|
|
|
*/
|
|
|
|
Poco::File(path + "flags/").createDirectories();
|
|
|
|
global_context->setFlagsPath(path + "flags/");
|
|
|
|
|
|
|
|
if (config().has("interserver_http_port"))
|
|
|
|
{
|
|
|
|
String this_host = config().getString("interserver_http_host", "");
|
|
|
|
|
|
|
|
if (this_host.empty())
|
|
|
|
{
|
|
|
|
this_host = getFQDNOrHostName();
|
|
|
|
LOG_DEBUG(log,
|
|
|
|
"Configuration parameter 'interserver_http_host' doesn't exist or exists and empty. Will use '" + this_host
|
|
|
|
+ "' as replica host.");
|
|
|
|
}
|
|
|
|
|
|
|
|
String port_str = config().getString("interserver_http_port");
|
|
|
|
int port = parse<int>(port_str);
|
|
|
|
|
|
|
|
if (port < 0 || port > 0xFFFF)
|
|
|
|
throw Exception("Out of range 'interserver_http_port': " + toString(port), ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
|
|
|
|
|
|
|
global_context->setInterserverIOAddress(this_host, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config().has("macros"))
|
|
|
|
global_context->setMacros(Macros(config(), "macros"));
|
|
|
|
|
|
|
|
/// Initialize main config reloader.
|
|
|
|
std::string include_from_path = config().getString("include_from", "/etc/metrika.xml");
|
|
|
|
auto main_config_reloader = std::make_unique<ConfigReloader>(config_path,
|
|
|
|
include_from_path,
|
|
|
|
std::move(main_config_zk_node_cache),
|
|
|
|
[&](ConfigurationPtr config) { global_context->setClustersConfig(config); },
|
|
|
|
/* already_loaded = */ true);
|
|
|
|
|
|
|
|
/// Initialize users config reloader.
|
|
|
|
std::string users_config_path = config().getString("users_config", config_path);
|
|
|
|
/// If path to users' config isn't absolute, try guess its root (current) dir.
|
|
|
|
/// At first, try to find it in dir of main config, after will use current dir.
|
|
|
|
if (users_config_path.empty() || users_config_path[0] != '/')
|
|
|
|
{
|
|
|
|
std::string config_dir = Poco::Path(config_path).parent().toString();
|
|
|
|
if (Poco::File(config_dir + users_config_path).exists())
|
|
|
|
users_config_path = config_dir + users_config_path;
|
|
|
|
}
|
|
|
|
auto users_config_reloader = std::make_unique<ConfigReloader>(users_config_path,
|
|
|
|
include_from_path,
|
|
|
|
zkutil::ZooKeeperNodeCache([&] { return global_context->getZooKeeper(); }),
|
|
|
|
[&](ConfigurationPtr config) { global_context->setUsersConfig(config); },
|
|
|
|
/* already_loaded = */ false);
|
|
|
|
|
|
|
|
/// Limit on total number of coucurrently executed queries.
|
|
|
|
global_context->getProcessList().setMaxSize(config().getInt("max_concurrent_queries", 0));
|
|
|
|
|
|
|
|
/// Setup protection to avoid accidental DROP for big tables (that are greater than 50 GB by default)
|
|
|
|
if (config().has("max_table_size_to_drop"))
|
|
|
|
global_context->setMaxTableSizeToDrop(config().getUInt64("max_table_size_to_drop"));
|
|
|
|
|
|
|
|
/// Size of cache for uncompressed blocks. Zero means disabled.
|
2017-04-12 16:37:19 +00:00
|
|
|
size_t uncompressed_cache_size = config().getUInt64("uncompressed_cache_size", 0);
|
2017-04-01 07:20:54 +00:00
|
|
|
if (uncompressed_cache_size)
|
|
|
|
global_context->setUncompressedCache(uncompressed_cache_size);
|
|
|
|
|
|
|
|
/// Size of cache for marks (index of MergeTree family of tables). It is necessary.
|
2017-04-12 16:37:19 +00:00
|
|
|
size_t mark_cache_size = config().getUInt64("mark_cache_size");
|
2017-04-01 07:20:54 +00:00
|
|
|
if (mark_cache_size)
|
|
|
|
global_context->setMarkCache(mark_cache_size);
|
|
|
|
|
|
|
|
/// Load global settings from default profile.
|
|
|
|
Settings & settings = global_context->getSettingsRef();
|
|
|
|
String default_profile_name = config().getString("default_profile", "default");
|
|
|
|
global_context->setDefaultProfileName(default_profile_name);
|
|
|
|
global_context->setSetting("profile", default_profile_name);
|
|
|
|
|
|
|
|
LOG_INFO(log, "Loading metadata.");
|
|
|
|
loadMetadata(*global_context);
|
|
|
|
LOG_DEBUG(log, "Loaded metadata.");
|
|
|
|
|
|
|
|
global_context->setCurrentDatabase(default_database);
|
|
|
|
|
|
|
|
/// Create system tables.
|
|
|
|
if (!global_context->isDatabaseExist("system"))
|
|
|
|
{
|
|
|
|
Poco::File(path + "data/system").createDirectories();
|
|
|
|
Poco::File(path + "metadata/system").createDirectories();
|
|
|
|
|
|
|
|
auto system_database = std::make_shared<DatabaseOrdinary>("system", path + "metadata/system/");
|
|
|
|
global_context->addDatabase("system", system_database);
|
|
|
|
|
|
|
|
/// 'has_force_restore_data_flag' is true, to not fail on loading query_log table, if it is corrupted.
|
|
|
|
system_database->loadTables(*global_context, nullptr, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
DatabasePtr system_database = global_context->getDatabase("system");
|
|
|
|
|
|
|
|
attachSystemTablesServer(system_database, global_context.get(), has_zookeeper);
|
|
|
|
|
|
|
|
bool has_resharding_worker = false;
|
|
|
|
if (has_zookeeper && config().has("resharding"))
|
|
|
|
{
|
|
|
|
auto resharding_worker = std::make_shared<ReshardingWorker>(config(), "resharding", *global_context);
|
|
|
|
global_context->setReshardingWorker(resharding_worker);
|
|
|
|
resharding_worker->start();
|
|
|
|
has_resharding_worker = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCOPE_EXIT({
|
|
|
|
/** Ask to cancel background jobs all table engines,
|
|
|
|
* and also query_log.
|
|
|
|
* It is important to do early, not in destructor of Context, because
|
|
|
|
* table engines could use Context on destroy.
|
|
|
|
*/
|
|
|
|
LOG_INFO(log, "Shutting down storages.");
|
|
|
|
global_context->shutdown();
|
|
|
|
LOG_DEBUG(log, "Shutted down storages.");
|
|
|
|
|
|
|
|
/** Explicitly destroy Context. It is more convenient than in destructor of Server, becuase logger is still available.
|
|
|
|
* At this moment, no one could own shared part of Context.
|
|
|
|
*/
|
|
|
|
global_context.reset();
|
|
|
|
|
|
|
|
LOG_DEBUG(log, "Destroyed global context.");
|
|
|
|
});
|
|
|
|
|
|
|
|
{
|
|
|
|
Poco::Timespan keep_alive_timeout(config().getInt("keep_alive_timeout", 10), 0);
|
|
|
|
|
|
|
|
Poco::ThreadPool server_pool(3, config().getInt("max_connections", 1024));
|
|
|
|
Poco::Net::HTTPServerParams::Ptr http_params = new Poco::Net::HTTPServerParams;
|
|
|
|
http_params->setTimeout(settings.receive_timeout);
|
|
|
|
http_params->setKeepAliveTimeout(keep_alive_timeout);
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<Poco::Net::TCPServer>> servers;
|
|
|
|
|
|
|
|
std::vector<std::string> listen_hosts;
|
|
|
|
for (const auto & key : DB::getMultipleKeysFromConfig(config(), "", "listen_host"))
|
|
|
|
{
|
|
|
|
listen_hosts.emplace_back(config().getString(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen_hosts.empty())
|
|
|
|
{
|
|
|
|
listen_hosts.emplace_back("::1");
|
|
|
|
listen_hosts.emplace_back("127.0.0.1");
|
|
|
|
}
|
|
|
|
|
|
|
|
auto make_socket_address = [&](const std::string & host, std::uint16_t port) {
|
|
|
|
Poco::Net::SocketAddress socket_address;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
socket_address = Poco::Net::SocketAddress(host, port);
|
|
|
|
}
|
|
|
|
catch (const Poco::Net::DNSException & e)
|
|
|
|
{
|
|
|
|
/// Better message when IPv6 is disabled on host.
|
|
|
|
if (e.code() == EAI_FAMILY
|
2017-03-07 19:01:37 +00:00
|
|
|
#if defined(EAI_ADDRFAMILY)
|
2017-04-01 07:20:54 +00:00
|
|
|
|| e.code() == EAI_ADDRFAMILY
|
2017-03-07 19:01:37 +00:00
|
|
|
#endif
|
2017-04-01 07:20:54 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
LOG_ERROR(log,
|
|
|
|
"Cannot resolve listen_host (" << host << "), error: " << e.message() << ". "
|
|
|
|
<< "If it is an IPv6 address and your host has disabled IPv6, then consider to "
|
|
|
|
<< "specify IPv4 address to listen in <listen_host> element of configuration "
|
|
|
|
<< "file. Example: <listen_host>0.0.0.0</listen_host>");
|
|
|
|
}
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
return socket_address;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto & listen_host : listen_hosts)
|
|
|
|
{
|
|
|
|
/// For testing purposes, user may omit tcp_port or http_port or https_port in configuration file.
|
|
|
|
|
|
|
|
/// HTTP
|
|
|
|
if (config().has("http_port"))
|
|
|
|
{
|
|
|
|
Poco::Net::SocketAddress http_socket_address = make_socket_address(listen_host, config().getInt("http_port"));
|
|
|
|
Poco::Net::ServerSocket http_socket(http_socket_address);
|
|
|
|
http_socket.setReceiveTimeout(settings.receive_timeout);
|
|
|
|
http_socket.setSendTimeout(settings.send_timeout);
|
|
|
|
|
|
|
|
servers.emplace_back(new Poco::Net::HTTPServer(
|
|
|
|
new HTTPRequestHandlerFactory<HTTPHandler>(*this, "HTTPHandler-factory"), server_pool, http_socket, http_params));
|
|
|
|
|
|
|
|
LOG_INFO(log, "Listening http://" + http_socket_address.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// HTTPS
|
|
|
|
if (config().has("https_port"))
|
|
|
|
{
|
2017-03-28 20:30:57 +00:00
|
|
|
#if Poco_NetSSL_FOUND
|
2017-04-01 07:20:54 +00:00
|
|
|
std::call_once(ssl_init_once, SSLInit);
|
|
|
|
Poco::Net::SocketAddress http_socket_address = make_socket_address(listen_host, config().getInt("https_port"));
|
|
|
|
Poco::Net::SecureServerSocket http_socket(http_socket_address);
|
|
|
|
http_socket.setReceiveTimeout(settings.receive_timeout);
|
|
|
|
http_socket.setSendTimeout(settings.send_timeout);
|
2017-03-07 19:01:37 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
servers.emplace_back(new Poco::Net::HTTPServer(
|
|
|
|
new HTTPRequestHandlerFactory<HTTPHandler>(*this, "HTTPHandler-factory"), server_pool, http_socket, http_params));
|
2017-03-07 19:01:37 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_INFO(log, "Listening https://" + http_socket_address.toString());
|
2017-03-28 20:30:57 +00:00
|
|
|
#else
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception{"https protocol disabled because poco library built without NetSSL support.",
|
|
|
|
ErrorCodes::SUPPORT_IS_DISABLED};
|
2017-03-28 20:30:57 +00:00
|
|
|
#endif
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// TCP
|
|
|
|
if (config().has("tcp_port"))
|
|
|
|
{
|
|
|
|
Poco::Net::SocketAddress tcp_address = make_socket_address(listen_host, config().getInt("tcp_port"));
|
|
|
|
Poco::Net::ServerSocket tcp_socket(tcp_address);
|
|
|
|
tcp_socket.setReceiveTimeout(settings.receive_timeout);
|
|
|
|
tcp_socket.setSendTimeout(settings.send_timeout);
|
|
|
|
servers.emplace_back(
|
|
|
|
new Poco::Net::TCPServer(new TCPConnectionFactory(*this), server_pool, tcp_socket, new Poco::Net::TCPServerParams));
|
|
|
|
|
|
|
|
LOG_INFO(log, "Listening tcp: " + tcp_address.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// At least one of TCP and HTTP servers must be created.
|
|
|
|
if (servers.empty())
|
|
|
|
throw Exception("No 'tcp_port' and 'http_port' is specified in configuration file.", ErrorCodes::NO_ELEMENTS_IN_CONFIG);
|
|
|
|
|
|
|
|
/// Interserver IO HTTP
|
|
|
|
if (config().has("interserver_http_port"))
|
|
|
|
{
|
|
|
|
Poco::Net::SocketAddress interserver_address = make_socket_address(listen_host, config().getInt("interserver_http_port"));
|
|
|
|
Poco::Net::ServerSocket interserver_io_http_socket(interserver_address);
|
|
|
|
interserver_io_http_socket.setReceiveTimeout(settings.receive_timeout);
|
|
|
|
interserver_io_http_socket.setSendTimeout(settings.send_timeout);
|
|
|
|
servers.emplace_back(new Poco::Net::HTTPServer(
|
|
|
|
new HTTPRequestHandlerFactory<InterserverIOHTTPHandler>(*this, "InterserverIOHTTPHandler-factory"),
|
|
|
|
server_pool,
|
|
|
|
interserver_io_http_socket,
|
|
|
|
http_params));
|
|
|
|
|
|
|
|
LOG_INFO(log, "Listening interserver: " + interserver_address.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto & server : servers)
|
|
|
|
server->start();
|
|
|
|
|
|
|
|
LOG_INFO(log, "Ready for connections.");
|
|
|
|
|
|
|
|
SCOPE_EXIT({
|
|
|
|
LOG_DEBUG(log, "Received termination signal.");
|
|
|
|
|
|
|
|
if (has_resharding_worker)
|
|
|
|
{
|
|
|
|
LOG_INFO(log, "Shutting down resharding thread");
|
|
|
|
auto & resharding_worker = global_context->getReshardingWorker();
|
|
|
|
if (resharding_worker.isStarted())
|
|
|
|
resharding_worker.shutdown();
|
|
|
|
LOG_DEBUG(log, "Shut down resharding thread");
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DEBUG(log, "Waiting for current connections to close.");
|
|
|
|
|
|
|
|
is_cancelled = true;
|
|
|
|
|
|
|
|
int current_connections = 0;
|
|
|
|
for (auto & server : servers)
|
|
|
|
{
|
|
|
|
server->stop();
|
|
|
|
current_connections += server->currentConnections();
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DEBUG(log,
|
|
|
|
"Closed all listening sockets."
|
|
|
|
<< (current_connections ? " Waiting for " + std::to_string(current_connections) + " outstanding connections." : ""));
|
|
|
|
|
|
|
|
if (current_connections)
|
|
|
|
{
|
|
|
|
const int sleep_max_ms = 1000 * config().getInt("shutdown_wait_unfinished", 5);
|
|
|
|
const int sleep_one_ms = 100;
|
|
|
|
int sleep_current_ms = 0;
|
|
|
|
while (sleep_current_ms < sleep_max_ms)
|
|
|
|
{
|
|
|
|
current_connections = 0;
|
|
|
|
for (auto & server : servers)
|
|
|
|
current_connections += server->currentConnections();
|
|
|
|
if (!current_connections)
|
|
|
|
break;
|
|
|
|
sleep_current_ms += sleep_one_ms;
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(sleep_one_ms));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DEBUG(
|
|
|
|
log, "Closed connections." << (current_connections ? " But " + std::to_string(current_connections) + " remains."
|
|
|
|
+ " Tip: To increase wait time add to config: <shutdown_wait_unfinished>60</shutdown_wait_unfinished> ." : ""));
|
|
|
|
|
|
|
|
main_config_reloader.reset();
|
|
|
|
users_config_reloader.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
/// try to load dictionaries immediately, throw on error and die
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (!config().getBool("dictionaries_lazy_load", true))
|
|
|
|
{
|
|
|
|
global_context->tryCreateEmbeddedDictionaries();
|
|
|
|
global_context->tryCreateExternalDictionaries();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, "Caught exception while loading dictionaries.");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This object will periodically calculate some metrics.
|
|
|
|
AsynchronousMetrics async_metrics(*global_context);
|
|
|
|
|
|
|
|
attachSystemTablesAsync(system_database, async_metrics);
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<MetricsTransmitter>> metrics_transmitters;
|
|
|
|
for (const auto & graphite_key : DB::getMultipleKeysFromConfig(config(), "", "graphite"))
|
|
|
|
{
|
|
|
|
metrics_transmitters.emplace_back(std::make_unique<MetricsTransmitter>(async_metrics, graphite_key));
|
|
|
|
}
|
|
|
|
|
|
|
|
waitForTerminationRequest();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Application::EXIT_OK;
|
2012-03-09 03:06:09 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-31 19:54:49 +00:00
|
|
|
|
2016-11-11 17:01:02 +00:00
|
|
|
YANDEX_APP_SERVER_MAIN_FUNC(DB::Server, mainEntryClickHouseServer);
|