ClickHouse/src/Interpreters/ExternalModelsLoader.h

39 lines
914 B
C++
Raw Normal View History

2019-09-26 11:19:10 +00:00
#pragma once
#include <Interpreters/CatBoostModel.h>
#include <Interpreters/ExternalLoader.h>
#include <common/logger_useful.h>
#include <memory>
namespace DB
{
class Context;
/// Manages user-defined models.
class ExternalModelsLoader : public ExternalLoader
{
public:
using ModelPtr = std::shared_ptr<const IModel>;
/// Models will be loaded immediately and then will be updated in separate thread, each 'reload_period' seconds.
ExternalModelsLoader(Context & context_);
2019-09-26 11:19:10 +00:00
ModelPtr getModel(const std::string & name) const
{
return std::static_pointer_cast<const IModel>(load(name));
2019-09-26 11:19:10 +00:00
}
protected:
LoadablePtr create(const std::string & name, const Poco::Util::AbstractConfiguration & config,
2020-03-09 00:08:02 +00:00
const std::string & config_prefix, const std::string & repository_name) const override;
2019-09-26 11:19:10 +00:00
friend class StorageSystemModels;
private:
Context & context;
};
}