mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#include <Interpreters/ExternalModelsLoader.h>
|
|
#include <Interpreters/Context.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int INVALID_CONFIG_PARAMETER;
|
|
}
|
|
|
|
|
|
ExternalModelsLoader::ExternalModelsLoader(Context & context_)
|
|
: ExternalLoader("external model", &Logger::get("ExternalModelsLoader"))
|
|
, context(context_)
|
|
{
|
|
setConfigSettings({"model", "name", {}});
|
|
enablePeriodicUpdates(true);
|
|
}
|
|
|
|
std::shared_ptr<const IExternalLoadable> ExternalModelsLoader::create(
|
|
const std::string & name, const Poco::Util::AbstractConfiguration & config,
|
|
const std::string & config_prefix, const std::string & /* repository_name */) const
|
|
{
|
|
String type = config.getString(config_prefix + ".type");
|
|
ExternalLoadableLifetime lifetime(config, config_prefix + ".lifetime");
|
|
|
|
/// TODO: add models factory.
|
|
if (type == "catboost")
|
|
{
|
|
return std::make_unique<CatBoostModel>(
|
|
name, config.getString(config_prefix + ".path"),
|
|
context.getConfigRef().getString("catboost_dynamic_library_path"),
|
|
lifetime
|
|
);
|
|
}
|
|
else
|
|
{
|
|
throw Exception("Unknown model type: " + type, ErrorCodes::INVALID_CONFIG_PARAMETER);
|
|
}
|
|
}
|
|
}
|