2018-11-28 11:37:12 +00:00
|
|
|
#include "MySQLDictionarySource.h"
|
2020-04-16 12:31:57 +00:00
|
|
|
|
2021-06-10 08:34:57 +00:00
|
|
|
|
|
|
|
#if USE_MYSQL
|
|
|
|
# include <mysqlxx/PoolFactory.h>
|
|
|
|
#endif
|
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionarySourceFactory.h"
|
|
|
|
#include "DictionaryStructure.h"
|
2019-12-15 06:34:43 +00:00
|
|
|
#include "registerDictionaries.h"
|
2021-04-10 01:37:56 +00:00
|
|
|
#include <Core/Settings.h>
|
|
|
|
#include <Interpreters/Context.h>
|
2021-10-16 14:03:50 +00:00
|
|
|
#include <QueryPipeline/Pipe.h>
|
|
|
|
#include <QueryPipeline/QueryPipeline.h>
|
2021-09-02 13:01:26 +00:00
|
|
|
#include <Storages/ExternalDataSourceConfiguration.h>
|
2021-12-13 22:06:46 +00:00
|
|
|
#include <Storages/MySQL/MySQLHelpers.h>
|
|
|
|
#include <Storages/MySQL/MySQLSettings.h>
|
2021-09-02 13:01:26 +00:00
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2021-04-10 01:37:56 +00:00
|
|
|
|
|
|
|
[[maybe_unused]]
|
|
|
|
static const size_t default_num_tries_on_connection_loss = 3;
|
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int SUPPORT_IS_DISABLED;
|
2021-07-29 20:57:06 +00:00
|
|
|
extern const int UNSUPPORTED_METHOD;
|
2018-11-28 11:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void registerDictionarySourceMysql(DictionarySourceFactory & factory)
|
|
|
|
{
|
2021-04-10 01:37:56 +00:00
|
|
|
auto create_table_source = [=]([[maybe_unused]] const DictionaryStructure & dict_struct,
|
|
|
|
[[maybe_unused]] const Poco::Util::AbstractConfiguration & config,
|
|
|
|
[[maybe_unused]] const std::string & config_prefix,
|
|
|
|
[[maybe_unused]] Block & sample_block,
|
2021-08-12 15:16:55 +00:00
|
|
|
[[maybe_unused]] ContextPtr global_context,
|
2021-09-03 14:41:00 +00:00
|
|
|
const std::string & /* default_database */,
|
|
|
|
[[maybe_unused]] bool created_from_ddl) -> DictionarySourcePtr {
|
2017-12-09 06:32:22 +00:00
|
|
|
#if USE_MYSQL
|
2021-09-02 13:01:26 +00:00
|
|
|
StreamSettings mysql_input_stream_settings(
|
|
|
|
global_context->getSettingsRef(),
|
|
|
|
config.getBool(config_prefix + ".mysql.close_connection", false) || config.getBool(config_prefix + ".mysql.share_connection", false),
|
|
|
|
false,
|
|
|
|
config.getBool(config_prefix + ".mysql.fail_on_connection_loss", false) ? 1 : default_num_tries_on_connection_loss);
|
2021-06-10 08:34:57 +00:00
|
|
|
|
|
|
|
auto settings_config_prefix = config_prefix + ".mysql";
|
2021-09-25 14:46:03 +00:00
|
|
|
std::shared_ptr<mysqlxx::PoolWithFailover> pool;
|
2021-12-13 22:06:46 +00:00
|
|
|
StorageMySQLConfiguration configuration;
|
2021-09-25 14:46:03 +00:00
|
|
|
auto named_collection = created_from_ddl ? getExternalDataSourceConfiguration(config, settings_config_prefix, global_context) : std::nullopt;
|
|
|
|
if (named_collection)
|
|
|
|
{
|
2021-12-13 22:06:46 +00:00
|
|
|
configuration.set(*named_collection);
|
|
|
|
configuration.addresses = {std::make_pair(configuration.host, configuration.port)};
|
|
|
|
MySQLSettings mysql_settings;
|
|
|
|
const auto & settings = global_context->getSettingsRef();
|
|
|
|
mysql_settings.connect_timeout = settings.external_storage_connect_timeout;
|
|
|
|
mysql_settings.read_write_timeout = settings.external_storage_rw_timeout;
|
|
|
|
pool = std::make_shared<mysqlxx::PoolWithFailover>(createMySQLPoolWithFailover(configuration, mysql_settings));
|
2021-09-25 14:46:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
configuration.database = config.getString(settings_config_prefix + ".db", "");
|
|
|
|
configuration.table = config.getString(settings_config_prefix + ".table", "");
|
|
|
|
pool = std::make_shared<mysqlxx::PoolWithFailover>(mysqlxx::PoolFactory::instance().get(config, settings_config_prefix));
|
|
|
|
}
|
|
|
|
|
2021-07-29 20:57:06 +00:00
|
|
|
auto query = config.getString(settings_config_prefix + ".query", "");
|
2021-09-02 13:01:26 +00:00
|
|
|
if (query.empty() && configuration.table.empty())
|
2021-07-29 20:57:06 +00:00
|
|
|
throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "MySQL dictionary source configuration must contain table or query field");
|
|
|
|
|
2021-09-02 13:01:26 +00:00
|
|
|
MySQLDictionarySource::Configuration dictionary_configuration
|
2021-06-10 08:34:57 +00:00
|
|
|
{
|
2021-09-02 13:01:26 +00:00
|
|
|
.db = configuration.database,
|
|
|
|
.table = configuration.table,
|
2021-07-29 20:57:06 +00:00
|
|
|
.query = query,
|
2021-09-02 13:01:26 +00:00
|
|
|
.where = config.getString(settings_config_prefix + ".where", ""),
|
2021-06-10 08:34:57 +00:00
|
|
|
.invalidate_query = config.getString(settings_config_prefix + ".invalidate_query", ""),
|
|
|
|
.update_field = config.getString(settings_config_prefix + ".update_field", ""),
|
|
|
|
.update_lag = config.getUInt64(settings_config_prefix + ".update_lag", 1),
|
|
|
|
.dont_check_update_time = config.getBool(settings_config_prefix + ".dont_check_update_time", false)
|
|
|
|
};
|
|
|
|
|
2021-09-02 13:01:26 +00:00
|
|
|
return std::make_unique<MySQLDictionarySource>(dict_struct, dictionary_configuration, std::move(pool), sample_block, mysql_input_stream_settings);
|
2018-11-28 11:37:12 +00:00
|
|
|
#else
|
2021-04-10 18:48:36 +00:00
|
|
|
throw Exception(ErrorCodes::SUPPORT_IS_DISABLED,
|
|
|
|
"Dictionary source of type `mysql` is disabled because ClickHouse was built without mysql support.");
|
2018-11-28 11:37:12 +00:00
|
|
|
#endif
|
|
|
|
};
|
2021-06-10 08:34:57 +00:00
|
|
|
|
2020-03-23 02:12:31 +00:00
|
|
|
factory.registerSource("mysql", create_table_source);
|
2018-11-28 11:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-12-09 06:32:22 +00:00
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
|
|
|
|
#if USE_MYSQL
|
2018-12-10 15:25:45 +00:00
|
|
|
# include <Columns/ColumnString.h>
|
|
|
|
# include <DataTypes/DataTypeString.h>
|
|
|
|
# include <IO/WriteBufferFromString.h>
|
|
|
|
# include <IO/WriteHelpers.h>
|
2021-10-02 07:13:14 +00:00
|
|
|
# include <base/LocalDateTime.h>
|
|
|
|
# include <base/logger_useful.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
# include "readInvalidateQuery.h"
|
2021-02-27 08:18:28 +00:00
|
|
|
# include <mysqlxx/Exception.h>
|
2021-04-10 01:37:56 +00:00
|
|
|
# include <Core/Settings.h>
|
2018-06-05 19:46:49 +00:00
|
|
|
|
2016-06-05 15:21:35 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
MySQLDictionarySource::MySQLDictionarySource(
|
|
|
|
const DictionaryStructure & dict_struct_,
|
2021-06-10 08:34:57 +00:00
|
|
|
const Configuration & configuration_,
|
|
|
|
mysqlxx::PoolWithFailoverPtr pool_,
|
2021-04-10 01:37:56 +00:00
|
|
|
const Block & sample_block_,
|
|
|
|
const StreamSettings & settings_)
|
2020-05-30 21:57:37 +00:00
|
|
|
: log(&Poco::Logger::get("MySQLDictionarySource"))
|
2021-06-10 08:34:57 +00:00
|
|
|
, update_time(std::chrono::system_clock::from_time_t(0))
|
|
|
|
, dict_struct(dict_struct_)
|
|
|
|
, configuration(configuration_)
|
|
|
|
, pool(std::move(pool_))
|
|
|
|
, sample_block(sample_block_)
|
2021-07-29 20:57:06 +00:00
|
|
|
, query_builder(dict_struct, configuration.db, "", configuration.table, configuration.query, configuration.where, IdentifierQuotingStyle::Backticks)
|
2021-08-09 11:23:44 +00:00
|
|
|
, load_all_query(query_builder.composeLoadAllQuery())
|
2021-04-10 01:37:56 +00:00
|
|
|
, settings(settings_)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// copy-constructor is provided in order to support cloneability
|
|
|
|
MySQLDictionarySource::MySQLDictionarySource(const MySQLDictionarySource & other)
|
2020-05-30 21:57:37 +00:00
|
|
|
: log(&Poco::Logger::get("MySQLDictionarySource"))
|
2021-06-10 08:34:57 +00:00
|
|
|
, update_time(other.update_time)
|
|
|
|
, dict_struct(other.dict_struct)
|
|
|
|
, configuration(other.configuration)
|
|
|
|
, pool(other.pool)
|
|
|
|
, sample_block(other.sample_block)
|
2021-07-29 20:57:06 +00:00
|
|
|
, query_builder{dict_struct, configuration.db, "", configuration.table, configuration.query, configuration.where, IdentifierQuotingStyle::Backticks}
|
2018-12-10 15:25:45 +00:00
|
|
|
, load_all_query{other.load_all_query}
|
|
|
|
, last_modification{other.last_modification}
|
|
|
|
, invalidate_query_response{other.invalidate_query_response}
|
2021-04-10 01:37:56 +00:00
|
|
|
, settings(other.settings)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
std::string MySQLDictionarySource::getUpdateFieldAndDate()
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
if (update_time != std::chrono::system_clock::from_time_t(0))
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
time_t hr_time = std::chrono::system_clock::to_time_t(update_time) - configuration.update_lag;
|
2021-03-15 19:23:27 +00:00
|
|
|
std::string str_time = DateLUT::instance().timeToString(hr_time);
|
2018-01-15 12:44:39 +00:00
|
|
|
update_time = std::chrono::system_clock::now();
|
2021-06-10 08:34:57 +00:00
|
|
|
return query_builder.composeUpdateQuery(configuration.update_field, str_time);
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
update_time = std::chrono::system_clock::now();
|
2021-07-29 20:57:06 +00:00
|
|
|
return load_all_query;
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-05 18:08:52 +00:00
|
|
|
Pipe MySQLDictionarySource::loadFromQuery(const String & query)
|
2021-02-27 08:18:28 +00:00
|
|
|
{
|
2021-08-05 18:08:52 +00:00
|
|
|
return Pipe(std::make_shared<MySQLWithFailoverSource>(
|
|
|
|
pool, query, sample_block, settings));
|
2021-02-27 08:18:28 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 18:08:52 +00:00
|
|
|
Pipe MySQLDictionarySource::loadAll()
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2021-03-27 14:35:44 +00:00
|
|
|
auto connection = pool->get();
|
2020-02-27 09:34:06 +00:00
|
|
|
last_modification = getLastModification(connection, false);
|
2016-06-05 15:21:35 +00:00
|
|
|
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_TRACE(log, load_all_query);
|
2021-04-02 16:12:14 +00:00
|
|
|
return loadFromQuery(load_all_query);
|
2018-02-15 13:08:23 +00:00
|
|
|
}
|
2018-01-15 12:44:39 +00:00
|
|
|
|
2021-08-05 18:08:52 +00:00
|
|
|
Pipe MySQLDictionarySource::loadUpdatedAll()
|
2018-02-15 13:08:23 +00:00
|
|
|
{
|
2021-03-27 14:35:44 +00:00
|
|
|
auto connection = pool->get();
|
2020-02-27 09:34:06 +00:00
|
|
|
last_modification = getLastModification(connection, false);
|
2018-01-15 12:44:39 +00:00
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
std::string load_update_query = getUpdateFieldAndDate();
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_TRACE(log, load_update_query);
|
2021-04-02 16:12:14 +00:00
|
|
|
return loadFromQuery(load_update_query);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 18:08:52 +00:00
|
|
|
Pipe MySQLDictionarySource::loadIds(const std::vector<UInt64> & ids)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
/// We do not log in here and do not update the modification time, as the request can be large, and often called.
|
|
|
|
const auto query = query_builder.composeLoadIdsQuery(ids);
|
2021-04-02 16:12:14 +00:00
|
|
|
return loadFromQuery(query);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 18:08:52 +00:00
|
|
|
Pipe MySQLDictionarySource::loadKeys(const Columns & key_columns, const std::vector<size_t> & requested_rows)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
/// We do not log in here and do not update the modification time, as the request can be large, and often called.
|
|
|
|
const auto query = query_builder.composeLoadKeysQuery(key_columns, requested_rows, ExternalQueryBuilder::AND_OR_CHAIN);
|
2021-04-02 16:12:14 +00:00
|
|
|
return loadFromQuery(query);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MySQLDictionarySource::isModified() const
|
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
if (!configuration.invalidate_query.empty())
|
2017-05-15 14:16:10 +00:00
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
auto response = doInvalidateQuery(configuration.invalidate_query);
|
2021-05-08 16:09:17 +00:00
|
|
|
if (response == invalidate_query_response) //-V1051
|
2017-05-15 14:16:10 +00:00
|
|
|
return false;
|
2021-06-10 08:34:57 +00:00
|
|
|
|
2017-05-15 14:16:10 +00:00
|
|
|
invalidate_query_response = response;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-06-10 08:34:57 +00:00
|
|
|
if (configuration.dont_check_update_time)
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
2021-06-10 08:34:57 +00:00
|
|
|
|
2021-03-27 14:35:44 +00:00
|
|
|
auto connection = pool->get();
|
2020-02-27 09:34:06 +00:00
|
|
|
return getLastModification(connection, true) > last_modification;
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MySQLDictionarySource::supportsSelectiveLoad() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 12:44:39 +00:00
|
|
|
bool MySQLDictionarySource::hasUpdateField() const
|
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
return !configuration.update_field.empty();
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
|
2016-06-05 15:21:35 +00:00
|
|
|
DictionarySourcePtr MySQLDictionarySource::clone() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return std::make_unique<MySQLDictionarySource>(*this);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string MySQLDictionarySource::toString() const
|
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
const auto & where = configuration.where;
|
|
|
|
return "MySQL: " + configuration.db + '.' + configuration.table + (where.empty() ? "" : ", where: " + where);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 08:34:57 +00:00
|
|
|
std::string MySQLDictionarySource::quoteForLike(const std::string & value)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string tmp;
|
2021-06-10 08:34:57 +00:00
|
|
|
tmp.reserve(value.size());
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-06-10 08:34:57 +00:00
|
|
|
for (auto c : value)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
if (c == '%' || c == '_' || c == '\\')
|
|
|
|
tmp.push_back('\\');
|
|
|
|
tmp.push_back(c);
|
|
|
|
}
|
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
WriteBufferFromOwnString out;
|
|
|
|
writeQuoted(tmp, out);
|
|
|
|
return out.str();
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 09:34:06 +00:00
|
|
|
LocalDateTime MySQLDictionarySource::getLastModification(mysqlxx::Pool::Entry & connection, bool allow_connection_closure) const
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2018-08-10 04:02:56 +00:00
|
|
|
LocalDateTime modification_time{std::time(nullptr)};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-06-10 08:34:57 +00:00
|
|
|
if (configuration.dont_check_update_time)
|
2018-08-10 04:02:56 +00:00
|
|
|
return modification_time;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2021-06-10 08:34:57 +00:00
|
|
|
auto query = connection->query("SHOW TABLE STATUS LIKE " + quoteForLike(configuration.table));
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_TRACE(log, query.str());
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
auto result = query.use();
|
|
|
|
|
|
|
|
size_t fetched_rows = 0;
|
|
|
|
if (auto row = result.fetch())
|
|
|
|
{
|
|
|
|
++fetched_rows;
|
2020-03-23 02:12:31 +00:00
|
|
|
static const auto UPDATE_TIME_IDX = 12;
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & update_time_value = row[UPDATE_TIME_IDX];
|
|
|
|
|
|
|
|
if (!update_time_value.isNull())
|
|
|
|
{
|
2018-08-10 04:02:56 +00:00
|
|
|
modification_time = update_time_value.getDateTime();
|
2021-03-15 19:23:27 +00:00
|
|
|
LOG_TRACE(log, "Got modification time: {}", update_time_value.getString());
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// fetch remaining rows to avoid "commands out of sync" error
|
|
|
|
while (result.fetch())
|
|
|
|
++fetched_rows;
|
|
|
|
}
|
|
|
|
|
2021-04-10 01:37:56 +00:00
|
|
|
if (settings.auto_close && allow_connection_closure)
|
2020-02-27 09:34:06 +00:00
|
|
|
{
|
|
|
|
connection.disconnect();
|
|
|
|
}
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (0 == fetched_rows)
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_ERROR(log, "Cannot find table in SHOW TABLE STATUS result.");
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (fetched_rows > 1)
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_ERROR(log, "Found more than one table in SHOW TABLE STATUS result.");
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException("MySQLDictionarySource");
|
|
|
|
}
|
|
|
|
/// we suppose failure to get modification time is not an error, therefore return current time
|
2018-08-10 04:02:56 +00:00
|
|
|
return modification_time;
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 16:38:24 +00:00
|
|
|
std::string MySQLDictionarySource::doInvalidateQuery(const std::string & request) const
|
2017-05-15 14:16:10 +00:00
|
|
|
{
|
2018-08-10 04:02:56 +00:00
|
|
|
Block invalidate_sample_block;
|
2017-12-14 01:43:19 +00:00
|
|
|
ColumnPtr column(ColumnString::create());
|
2018-08-10 04:02:56 +00:00
|
|
|
invalidate_sample_block.insert(ColumnWithTypeAndName(column, std::make_shared<DataTypeString>(), "Sample Block"));
|
2021-09-16 17:40:42 +00:00
|
|
|
return readInvalidateQuery(QueryPipeline(std::make_unique<MySQLSource>(pool->get(), request, invalidate_sample_block, settings)));
|
2017-05-15 14:16:10 +00:00
|
|
|
}
|
2016-06-05 15:21:35 +00:00
|
|
|
|
|
|
|
}
|
2017-04-19 00:25:57 +00:00
|
|
|
|
2021-08-06 08:41:45 +00:00
|
|
|
#endif
|