2017-12-27 17:58:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Poco/Timespan.h>
|
|
|
|
#include <Interpreters/Settings.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
struct ConnectionTimeouts
|
|
|
|
{
|
|
|
|
Poco::Timespan connection_timeout;
|
|
|
|
Poco::Timespan send_timeout;
|
|
|
|
Poco::Timespan receive_timeout;
|
|
|
|
|
|
|
|
ConnectionTimeouts() = default;
|
|
|
|
|
|
|
|
ConnectionTimeouts(const Poco::Timespan & connection_timeout_,
|
|
|
|
const Poco::Timespan & send_timeout_,
|
|
|
|
const Poco::Timespan & receive_timeout_)
|
|
|
|
: connection_timeout(connection_timeout_),
|
|
|
|
send_timeout(send_timeout_),
|
|
|
|
receive_timeout(receive_timeout_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static Poco::Timespan saturate(const Poco::Timespan & timespan, const Poco::Timespan & limit)
|
|
|
|
{
|
|
|
|
if (limit.totalMicroseconds() == 0)
|
|
|
|
return timespan;
|
|
|
|
else
|
|
|
|
return (timespan > limit) ? limit : timespan;
|
|
|
|
}
|
|
|
|
|
|
|
|
ConnectionTimeouts getSaturated(const Poco::Timespan & limit) const
|
|
|
|
{
|
|
|
|
return ConnectionTimeouts(saturate(connection_timeout, limit),
|
|
|
|
saturate(send_timeout, limit),
|
|
|
|
saturate(receive_timeout, limit));
|
|
|
|
}
|
|
|
|
|
2018-03-12 20:25:18 +00:00
|
|
|
/// Timeouts for the case when we have just single attempt to connect.
|
|
|
|
static ConnectionTimeouts getTCPTimeoutsWithoutFailover(const Settings & settings)
|
2017-12-27 17:58:52 +00:00
|
|
|
{
|
|
|
|
return ConnectionTimeouts(settings.connect_timeout, settings.send_timeout, settings.receive_timeout);
|
|
|
|
}
|
|
|
|
|
2018-03-12 20:25:18 +00:00
|
|
|
/// Timeouts for the case when we will try many addresses in a loop.
|
|
|
|
static ConnectionTimeouts getTCPTimeoutsWithFailover(const Settings & settings)
|
|
|
|
{
|
|
|
|
return ConnectionTimeouts(settings.connect_timeout_with_failover_ms, settings.send_timeout, settings.receive_timeout);
|
|
|
|
}
|
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
static ConnectionTimeouts getHTTPTimeouts(const Settings & settings)
|
|
|
|
{
|
|
|
|
return ConnectionTimeouts(settings.http_connection_timeout, settings.http_send_timeout, settings.http_receive_timeout);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|