ClickHouse/src/Interpreters/ExternalDictionariesLoader.cpp

159 lines
5.7 KiB
C++
Raw Normal View History

2019-09-26 11:19:10 +00:00
#include <Interpreters/ExternalDictionariesLoader.h>
2021-03-19 12:47:27 +00:00
#include <Interpreters/DatabaseCatalog.h>
#include <Interpreters/Context.h>
2019-09-26 11:19:10 +00:00
#include <Dictionaries/DictionaryFactory.h>
#include <Dictionaries/DictionaryStructure.h>
2021-03-19 12:47:27 +00:00
#include <Databases/IDatabase.h>
#include <Storages/IStorage.h>
#if !defined(ARCADIA_BUILD)
# include "config_core.h"
#endif
2019-09-26 11:19:10 +00:00
#if USE_MYSQL
# include <mysqlxx/PoolFactory.h>
#endif
2019-09-26 11:19:10 +00:00
namespace DB
{
2021-03-19 12:47:27 +00:00
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
2019-09-26 11:19:10 +00:00
/// Must not acquire Context lock in constructor to avoid possibility of deadlocks.
2021-06-01 12:20:52 +00:00
ExternalDictionariesLoader::ExternalDictionariesLoader(ContextPtr global_context_)
2020-05-30 21:57:37 +00:00
: ExternalLoader("external dictionary", &Poco::Logger::get("ExternalDictionariesLoader"))
2021-06-01 12:20:52 +00:00
, WithContext(global_context_)
2019-09-26 11:19:10 +00:00
{
2020-07-15 19:25:31 +00:00
setConfigSettings({"dictionary", "name", "database", "uuid"});
2019-09-26 11:19:10 +00:00
enableAsyncLoading(true);
enablePeriodicUpdates(true);
}
ExternalLoader::LoadablePtr ExternalDictionariesLoader::create(
2019-12-11 11:09:21 +00:00
const std::string & name, const Poco::Util::AbstractConfiguration & config,
const std::string & key_in_config, const std::string & repository_name) const
2019-09-26 11:19:10 +00:00
{
2020-01-11 09:50:41 +00:00
/// For dictionaries from databases (created with DDL queries) we have to perform
/// additional checks, so we identify them here.
bool created_from_ddl = !repository_name.empty();
return DictionaryFactory::instance().create(name, config, key_in_config, getContext(), created_from_ddl);
2019-09-26 11:19:10 +00:00
}
2021-06-01 12:20:52 +00:00
ExternalDictionariesLoader::DictPtr ExternalDictionariesLoader::getDictionary(const std::string & dictionary_name, ContextPtr local_context) const
2021-03-19 12:47:27 +00:00
{
std::string resolved_dictionary_name = resolveDictionaryName(dictionary_name, local_context->getCurrentDatabase());
return std::static_pointer_cast<const IDictionary>(load(resolved_dictionary_name));
2021-03-19 12:47:27 +00:00
}
2021-06-01 12:20:52 +00:00
ExternalDictionariesLoader::DictPtr ExternalDictionariesLoader::tryGetDictionary(const std::string & dictionary_name, ContextPtr local_context) const
2021-03-19 12:47:27 +00:00
{
std::string resolved_dictionary_name = resolveDictionaryName(dictionary_name, local_context->getCurrentDatabase());
return std::static_pointer_cast<const IDictionary>(tryLoad(resolved_dictionary_name));
2021-03-19 12:47:27 +00:00
}
2021-06-01 12:20:52 +00:00
void ExternalDictionariesLoader::reloadDictionary(const std::string & dictionary_name, ContextPtr local_context) const
2021-03-19 12:47:27 +00:00
{
std::string resolved_dictionary_name = resolveDictionaryName(dictionary_name, local_context->getCurrentDatabase());
2021-03-19 12:47:27 +00:00
loadOrReload(resolved_dictionary_name);
}
2021-06-01 12:20:52 +00:00
DictionaryStructure ExternalDictionariesLoader::getDictionaryStructure(const std::string & dictionary_name, ContextPtr query_context) const
2021-03-19 12:47:27 +00:00
{
std::string resolved_name = resolveDictionaryName(dictionary_name, query_context->getCurrentDatabase());
2021-03-19 12:47:27 +00:00
auto load_result = getLoadResult(resolved_name);
if (load_result.object)
{
const auto dictionary = std::static_pointer_cast<const IDictionary>(load_result.object);
return dictionary->getStructure();
}
2021-03-19 12:47:27 +00:00
if (!load_result.config)
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Dictionary {} config not found", backQuote(dictionary_name));
2021-03-19 12:47:27 +00:00
return ExternalDictionariesLoader::getDictionaryStructure(*load_result.config);
}
std::string ExternalDictionariesLoader::resolveDictionaryName(const std::string & dictionary_name, const std::string & current_database_name) const
2021-03-19 12:47:27 +00:00
{
2021-07-20 08:35:10 +00:00
bool has_dictionary = has(dictionary_name);
if (has_dictionary)
return dictionary_name;
2021-03-19 12:47:27 +00:00
std::string resolved_name = resolveDictionaryNameFromDatabaseCatalog(dictionary_name);
2021-07-20 08:35:10 +00:00
has_dictionary = has(resolved_name);
2021-03-19 12:47:27 +00:00
if (!has_dictionary)
{
/// If dictionary not found. And database was not implicitly specified
/// we can qualify dictionary name with current database name.
/// It will help if dictionary is created with DDL and is in current database.
if (dictionary_name.find('.') == std::string::npos)
{
String dictionary_name_with_database = current_database_name + '.' + dictionary_name;
2021-03-19 12:47:27 +00:00
resolved_name = resolveDictionaryNameFromDatabaseCatalog(dictionary_name_with_database);
has_dictionary = has(resolved_name);
}
}
if (!has_dictionary)
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Dictionary ({}) not found", backQuote(dictionary_name));
return resolved_name;
}
std::string ExternalDictionariesLoader::resolveDictionaryNameFromDatabaseCatalog(const std::string & name) const
{
/// If it's dictionary from Atomic database, then we need to convert qualified name to UUID.
/// Try to split name and get id from associated StorageDictionary.
/// If something went wrong, return name as is.
auto pos = name.find('.');
if (pos == std::string::npos || name.find('.', pos + 1) != std::string::npos)
return name;
std::string maybe_database_name = name.substr(0, pos);
std::string maybe_table_name = name.substr(pos + 1);
auto [db, table] = DatabaseCatalog::instance().tryGetDatabaseAndTable(
{maybe_database_name, maybe_table_name},
const_pointer_cast<Context>(getContext()));
2021-03-19 12:47:27 +00:00
if (!db)
return name;
assert(table);
if (db->getUUID() == UUIDHelpers::Nil)
return name;
if (table->getName() != "Dictionary")
return name;
return toString(table->getStorageID().uuid);
}
DictionaryStructure
ExternalDictionariesLoader::getDictionaryStructure(const Poco::Util::AbstractConfiguration & config, const std::string & key_in_config)
{
return DictionaryStructure(config, key_in_config);
}
DictionaryStructure ExternalDictionariesLoader::getDictionaryStructure(const ObjectConfig & config)
{
return getDictionaryStructure(*config.config, config.key_in_config);
}
void ExternalDictionariesLoader::resetAll()
{
#if USE_MYSQL
mysqlxx::PoolFactory::instance().reset();
#endif
}
2019-09-26 11:19:10 +00:00
}