mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
79 lines
2.5 KiB
C++
79 lines
2.5 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <Poco/Logger.h>
|
|
#include <Client/ConnectionPoolWithFailover.h>
|
|
#include <Interpreters/Context.h>
|
|
#include "DictionaryStructure.h"
|
|
#include "ExternalQueryBuilder.h"
|
|
#include "IDictionarySource.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** Allows loading dictionaries from local or remote ClickHouse instance
|
|
* @todo use ConnectionPoolWithFailover
|
|
* @todo invent a way to keep track of source modifications
|
|
*/
|
|
class ClickHouseDictionarySource final : public IDictionarySource
|
|
{
|
|
public:
|
|
ClickHouseDictionarySource(
|
|
const DictionaryStructure & dict_struct_,
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
const std::string & config_prefix,
|
|
const Block & sample_block_,
|
|
const Context & context);
|
|
|
|
/// copy-constructor is provided in order to support cloneability
|
|
ClickHouseDictionarySource(const ClickHouseDictionarySource & other);
|
|
ClickHouseDictionarySource & operator=(const ClickHouseDictionarySource &) = delete;
|
|
|
|
BlockInputStreamPtr loadAll() override;
|
|
|
|
BlockInputStreamPtr loadUpdatedAll() override;
|
|
|
|
BlockInputStreamPtr loadIds(const std::vector<UInt64> & ids) override;
|
|
|
|
BlockInputStreamPtr loadKeys(const Columns & key_columns, const std::vector<size_t> & requested_rows) override;
|
|
|
|
bool isModified() const override;
|
|
bool supportsSelectiveLoad() const override { return true; }
|
|
|
|
bool hasUpdateField() const override;
|
|
|
|
DictionarySourcePtr clone() const override { return std::make_unique<ClickHouseDictionarySource>(*this); }
|
|
|
|
std::string toString() const override;
|
|
|
|
private:
|
|
std::string getUpdateFieldAndDate();
|
|
|
|
BlockInputStreamPtr createStreamForSelectiveLoad(const std::string & query);
|
|
|
|
std::string doInvalidateQuery(const std::string & request) const;
|
|
|
|
std::chrono::time_point<std::chrono::system_clock> update_time;
|
|
const DictionaryStructure dict_struct;
|
|
const std::string host;
|
|
const UInt16 port;
|
|
const bool secure;
|
|
const std::string user;
|
|
const std::string password;
|
|
const std::string db;
|
|
const std::string table;
|
|
const std::string where;
|
|
const std::string update_field;
|
|
std::string invalidate_query;
|
|
mutable std::string invalidate_query_response;
|
|
ExternalQueryBuilder query_builder;
|
|
Block sample_block;
|
|
Context context;
|
|
const bool is_local;
|
|
ConnectionPoolWithFailoverPtr pool;
|
|
const std::string load_all_query;
|
|
Poco::Logger * log = &Poco::Logger::get("ClickHouseDictionarySource");
|
|
};
|
|
|
|
}
|