ClickHouse/src/Dictionaries/HTTPDictionarySource.cpp

264 lines
9.2 KiB
C++
Raw Normal View History

#include "HTTPDictionarySource.h"
#include <DataStreams/IBlockOutputStream.h>
2017-05-25 19:26:17 +00:00
#include <DataStreams/OwningBlockInputStream.h>
2021-07-29 14:39:42 +00:00
#include <DataStreams/formatBlock.h>
#include <IO/ConnectionTimeouts.h>
#include <IO/ConnectionTimeoutsContext.h>
#include <IO/ReadWriteBufferFromHTTP.h>
#include <IO/WriteBufferFromOStream.h>
#include <IO/WriteBufferFromString.h>
#include <IO/WriteHelpers.h>
#include <Interpreters/Context.h>
#include <Poco/Net/HTTPRequest.h>
#include <common/logger_useful.h>
#include "DictionarySourceFactory.h"
#include "DictionarySourceHelpers.h"
#include "DictionaryStructure.h"
2019-12-15 06:34:43 +00:00
#include "registerDictionaries.h"
2016-11-15 19:51:06 +00:00
namespace DB
{
2020-02-25 18:10:48 +00:00
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
}
2019-02-10 16:55:12 +00:00
static const UInt64 max_block_size = 8192;
2016-12-08 02:49:04 +00:00
HTTPDictionarySource::HTTPDictionarySource(
const DictionaryStructure & dict_struct_,
const Configuration & configuration_,
const Poco::Net::HTTPBasicCredentials & credentials_,
2019-08-03 11:02:40 +00:00
Block & sample_block_,
2021-06-01 12:20:52 +00:00
ContextPtr context_,
bool created_from_ddl)
2020-05-30 21:57:37 +00:00
: log(&Poco::Logger::get("HTTPDictionarySource"))
, update_time(std::chrono::system_clock::from_time_t(0))
, dict_struct(dict_struct_)
, configuration(configuration_)
, sample_block(sample_block_)
2019-08-03 11:02:40 +00:00
, context(context_)
2019-03-29 18:10:03 +00:00
, timeouts(ConnectionTimeouts::getHTTPTimeouts(context))
2016-11-15 19:51:06 +00:00
{
if (created_from_ddl)
context->getRemoteHostFilter().checkURL(Poco::URI(configuration.url));
credentials.setUsername(credentials_.getUsername());
credentials.setPassword(credentials_.getPassword());
2016-11-15 19:51:06 +00:00
}
HTTPDictionarySource::HTTPDictionarySource(const HTTPDictionarySource & other)
2020-05-30 21:57:37 +00:00
: log(&Poco::Logger::get("HTTPDictionarySource"))
, update_time(other.update_time)
, dict_struct(other.dict_struct)
, configuration(other.configuration)
, sample_block(other.sample_block)
, context(Context::createCopy(other.context))
2019-03-29 18:10:03 +00:00
, timeouts(ConnectionTimeouts::getHTTPTimeouts(context))
2016-11-15 19:51:06 +00:00
{
2019-09-26 03:34:22 +00:00
credentials.setUsername(other.credentials.getUsername());
credentials.setPassword(other.credentials.getPassword());
2016-11-15 19:51:06 +00:00
}
2021-05-08 07:15:14 +00:00
BlockInputStreamPtr HTTPDictionarySource::createWrappedBuffer(std::unique_ptr<ReadWriteBufferFromHTTP> http_buffer_ptr)
{
Poco::URI uri(configuration.url);
2021-05-10 20:32:30 +00:00
String http_request_compression_method_str = http_buffer_ptr->getCompressionMethod();
2021-05-08 07:15:14 +00:00
auto in_ptr_wrapped
2021-05-09 18:58:08 +00:00
= wrapReadBufferWithCompressionMethod(std::move(http_buffer_ptr), chooseCompressionMethod(uri.getPath(), http_request_compression_method_str));
auto input_stream = context->getInputFormat(configuration.format, *in_ptr_wrapped, sample_block, max_block_size);
return std::make_shared<OwningBlockInputStream<ReadBuffer>>(input_stream, std::move(in_ptr_wrapped));
}
void HTTPDictionarySource::getUpdateFieldAndDate(Poco::URI & uri)
{
if (update_time != std::chrono::system_clock::from_time_t(0))
{
auto tmp_time = update_time;
update_time = std::chrono::system_clock::now();
time_t hr_time = std::chrono::system_clock::to_time_t(tmp_time) - configuration.update_lag;
WriteBufferFromOwnString out;
writeDateTimeText(hr_time, out);
uri.addQueryParameter(configuration.update_field, out.str());
}
else
{
update_time = std::chrono::system_clock::now();
}
}
2016-11-15 19:51:06 +00:00
BlockInputStreamPtr HTTPDictionarySource::loadAll()
{
2020-05-23 22:24:01 +00:00
LOG_TRACE(log, "loadAll {}", toString());
Poco::URI uri(configuration.url);
auto in_ptr = std::make_unique<ReadWriteBufferFromHTTP>(
2021-05-08 07:15:14 +00:00
uri,
Poco::Net::HTTPRequest::HTTP_GET,
ReadWriteBufferFromHTTP::OutStreamCallback(),
timeouts,
0,
credentials,
DBMS_DEFAULT_BUFFER_SIZE,
configuration.header_entries);
2021-05-08 07:15:14 +00:00
return createWrappedBuffer(std::move(in_ptr));
}
BlockInputStreamPtr HTTPDictionarySource::loadUpdatedAll()
{
Poco::URI uri(configuration.url);
getUpdateFieldAndDate(uri);
2020-05-23 22:24:01 +00:00
LOG_TRACE(log, "loadUpdatedAll {}", uri.toString());
auto in_ptr = std::make_unique<ReadWriteBufferFromHTTP>(
2021-05-08 07:15:14 +00:00
uri,
Poco::Net::HTTPRequest::HTTP_GET,
ReadWriteBufferFromHTTP::OutStreamCallback(),
timeouts,
0,
credentials,
DBMS_DEFAULT_BUFFER_SIZE,
configuration.header_entries);
return createWrappedBuffer(std::move(in_ptr));
2016-11-15 19:51:06 +00:00
}
BlockInputStreamPtr HTTPDictionarySource::loadIds(const std::vector<UInt64> & ids)
{
2020-05-23 22:24:01 +00:00
LOG_TRACE(log, "loadIds {} size = {}", toString(), ids.size());
2021-01-27 13:23:02 +00:00
auto block = blockForIds(dict_struct, ids);
2016-11-19 00:07:58 +00:00
ReadWriteBufferFromHTTP::OutStreamCallback out_stream_callback = [block, this](std::ostream & ostr)
2017-05-25 19:21:57 +00:00
{
WriteBufferFromOStream out_buffer(ostr);
auto output_stream = context->getOutputStreamParallelIfPossible(configuration.format, out_buffer, sample_block);
2021-01-31 09:59:35 +00:00
formatBlock(output_stream, block);
};
2016-11-24 19:57:24 +00:00
Poco::URI uri(configuration.url);
auto in_ptr = std::make_unique<ReadWriteBufferFromHTTP>(
2021-05-09 19:02:37 +00:00
uri,
Poco::Net::HTTPRequest::HTTP_POST,
out_stream_callback,
timeouts,
0,
credentials,
DBMS_DEFAULT_BUFFER_SIZE,
configuration.header_entries);
return createWrappedBuffer(std::move(in_ptr));
2016-11-15 19:51:06 +00:00
}
BlockInputStreamPtr HTTPDictionarySource::loadKeys(const Columns & key_columns, const std::vector<size_t> & requested_rows)
2016-11-15 19:51:06 +00:00
{
2020-05-23 22:24:01 +00:00
LOG_TRACE(log, "loadKeys {} size = {}", toString(), requested_rows.size());
2016-11-22 15:03:54 +00:00
auto block = blockForKeys(dict_struct, key_columns, requested_rows);
ReadWriteBufferFromHTTP::OutStreamCallback out_stream_callback = [block, this](std::ostream & ostr)
2017-05-25 19:21:57 +00:00
{
WriteBufferFromOStream out_buffer(ostr);
auto output_stream = context->getOutputStreamParallelIfPossible(configuration.format, out_buffer, sample_block);
2021-01-31 09:59:35 +00:00
formatBlock(output_stream, block);
};
2016-11-22 15:03:54 +00:00
Poco::URI uri(configuration.url);
auto in_ptr = std::make_unique<ReadWriteBufferFromHTTP>(
uri,
Poco::Net::HTTPRequest::HTTP_POST,
out_stream_callback,
timeouts,
0,
credentials,
DBMS_DEFAULT_BUFFER_SIZE,
configuration.header_entries);
return createWrappedBuffer(std::move(in_ptr));
2016-11-15 19:51:06 +00:00
}
bool HTTPDictionarySource::isModified() const
{
return true;
2016-11-15 19:51:06 +00:00
}
bool HTTPDictionarySource::supportsSelectiveLoad() const
{
return true;
2016-11-15 19:51:06 +00:00
}
bool HTTPDictionarySource::hasUpdateField() const
{
return !configuration.update_field.empty();
}
2016-11-15 19:51:06 +00:00
DictionarySourcePtr HTTPDictionarySource::clone() const
{
return std::make_unique<HTTPDictionarySource>(*this);
2016-11-15 19:51:06 +00:00
}
std::string HTTPDictionarySource::toString() const
{
Poco::URI uri(configuration.url);
return uri.toString();
2016-11-15 19:51:06 +00:00
}
void registerDictionarySourceHTTP(DictionarySourceFactory & factory)
{
auto create_table_source = [=](const DictionaryStructure & dict_struct,
2021-05-08 07:15:14 +00:00
const Poco::Util::AbstractConfiguration & config,
const std::string & config_prefix,
Block & sample_block,
2021-06-01 12:20:52 +00:00
ContextPtr context,
2021-05-08 07:15:14 +00:00
const std::string & /* default_database */,
bool created_from_ddl) -> DictionarySourcePtr {
if (dict_struct.has_expressions)
2021-04-10 18:48:36 +00:00
throw Exception(ErrorCodes::LOGICAL_ERROR, "Dictionary source of type `http` does not support attribute expressions");
auto context_local_copy = copyContextAndApplySettings(config_prefix, context, config);
const auto & settings_config_prefix = config_prefix + ".http";
const auto & credentials_prefix = settings_config_prefix + ".credentials";
Poco::Net::HTTPBasicCredentials credentials;
if (config.has(credentials_prefix))
{
credentials.setUsername(config.getString(credentials_prefix + ".user", ""));
credentials.setPassword(config.getString(credentials_prefix + ".password", ""));
}
const auto & headers_prefix = settings_config_prefix + ".headers";
ReadWriteBufferFromHTTP::HTTPHeaderEntries header_entries;
if (config.has(headers_prefix))
{
Poco::Util::AbstractConfiguration::Keys config_keys;
config.keys(headers_prefix, config_keys);
header_entries.reserve(config_keys.size());
for (const auto & key : config_keys)
{
const auto header_key = config.getString(headers_prefix + "." + key + ".name", "");
const auto header_value = config.getString(headers_prefix + "." + key + ".value", "");
header_entries.emplace_back(std::make_tuple(header_key, header_value));
}
}
auto configuration = HTTPDictionarySource::Configuration
{
.url = config.getString(settings_config_prefix + ".url", ""),
.format =config.getString(settings_config_prefix + ".format", ""),
.update_field = config.getString(settings_config_prefix + ".update_field", ""),
.update_lag = config.getUInt64(settings_config_prefix + ".update_lag", 1),
.header_entries = std::move(header_entries)
};
return std::make_unique<HTTPDictionarySource>(dict_struct, configuration, credentials, sample_block, context_local_copy, created_from_ddl);
};
factory.registerSource("http", create_table_source);
}
2016-11-15 19:51:06 +00:00
}