mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
37 lines
1013 B
C++
37 lines
1013 B
C++
#include "LibraryBridgeHelper.h"
|
|
|
|
#include <IO/ConnectionTimeouts.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
LibraryBridgeHelper::LibraryBridgeHelper(ContextPtr context_)
|
|
: IBridgeHelper(context_)
|
|
, config(context_->getConfigRef())
|
|
, log(&Poco::Logger::get("LibraryBridgeHelper"))
|
|
, http_timeout(context_->getGlobalContext()->getSettingsRef().http_receive_timeout.value)
|
|
, bridge_host(config.getString("library_bridge.host", DEFAULT_HOST))
|
|
, bridge_port(config.getUInt("library_bridge.port", DEFAULT_PORT))
|
|
, http_timeouts(ConnectionTimeouts::getHTTPTimeouts(context_->getSettingsRef(), {context_->getConfigRef().getUInt("keep_alive_timeout", DEFAULT_HTTP_KEEP_ALIVE_TIMEOUT), 0}))
|
|
{
|
|
}
|
|
|
|
|
|
void LibraryBridgeHelper::startBridge(std::unique_ptr<ShellCommand> cmd) const
|
|
{
|
|
getContext()->addBridgeCommand(std::move(cmd));
|
|
}
|
|
|
|
|
|
Poco::URI LibraryBridgeHelper::createBaseURI() const
|
|
{
|
|
Poco::URI uri;
|
|
uri.setHost(bridge_host);
|
|
uri.setPort(bridge_port);
|
|
uri.setScheme("http");
|
|
return uri;
|
|
}
|
|
|
|
|
|
}
|