2017-12-27 17:58:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Poco/Timespan.h>
|
2019-03-29 18:10:03 +00:00
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-12-10 22:05:02 +00:00
|
|
|
class Context;
|
|
|
|
struct Settings;
|
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
struct ConnectionTimeouts
|
|
|
|
{
|
|
|
|
Poco::Timespan connection_timeout;
|
|
|
|
Poco::Timespan send_timeout;
|
|
|
|
Poco::Timespan receive_timeout;
|
2018-10-22 23:02:57 +00:00
|
|
|
Poco::Timespan tcp_keep_alive_timeout;
|
2019-03-29 18:10:03 +00:00
|
|
|
Poco::Timespan http_keep_alive_timeout;
|
2020-02-06 17:23:05 +00:00
|
|
|
Poco::Timespan secure_connection_timeout;
|
2017-12-27 17:58:52 +00:00
|
|
|
|
2021-01-19 19:21:06 +00:00
|
|
|
/// Timeouts for HedgedConnections
|
|
|
|
Poco::Timespan receive_hello_timeout;
|
|
|
|
Poco::Timespan receive_tables_status_timeout;
|
|
|
|
Poco::Timespan receive_data_timeout;
|
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
ConnectionTimeouts() = default;
|
|
|
|
|
2018-10-22 23:02:57 +00:00
|
|
|
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_),
|
2019-03-29 18:10:03 +00:00
|
|
|
tcp_keep_alive_timeout(0),
|
2020-02-06 17:23:05 +00:00
|
|
|
http_keep_alive_timeout(0),
|
2021-01-19 19:21:06 +00:00
|
|
|
secure_connection_timeout(connection_timeout),
|
|
|
|
receive_hello_timeout(0),
|
|
|
|
receive_tables_status_timeout(0),
|
|
|
|
receive_data_timeout(0)
|
2018-10-22 23:02:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
ConnectionTimeouts(const Poco::Timespan & connection_timeout_,
|
|
|
|
const Poco::Timespan & send_timeout_,
|
2018-10-22 18:09:55 +00:00
|
|
|
const Poco::Timespan & receive_timeout_,
|
2018-10-22 23:02:57 +00:00
|
|
|
const Poco::Timespan & tcp_keep_alive_timeout_)
|
2017-12-27 17:58:52 +00:00
|
|
|
: connection_timeout(connection_timeout_),
|
|
|
|
send_timeout(send_timeout_),
|
2018-10-22 18:09:55 +00:00
|
|
|
receive_timeout(receive_timeout_),
|
2019-03-29 18:10:03 +00:00
|
|
|
tcp_keep_alive_timeout(tcp_keep_alive_timeout_),
|
2020-02-06 17:23:05 +00:00
|
|
|
http_keep_alive_timeout(0),
|
2021-01-19 19:21:06 +00:00
|
|
|
secure_connection_timeout(connection_timeout),
|
|
|
|
receive_hello_timeout(0),
|
|
|
|
receive_tables_status_timeout(0),
|
|
|
|
receive_data_timeout(0)
|
2017-12-27 17:58:52 +00:00
|
|
|
{
|
|
|
|
}
|
2019-03-29 18:10:03 +00:00
|
|
|
ConnectionTimeouts(const Poco::Timespan & connection_timeout_,
|
|
|
|
const Poco::Timespan & send_timeout_,
|
|
|
|
const Poco::Timespan & receive_timeout_,
|
|
|
|
const Poco::Timespan & tcp_keep_alive_timeout_,
|
|
|
|
const Poco::Timespan & http_keep_alive_timeout_)
|
|
|
|
: connection_timeout(connection_timeout_),
|
|
|
|
send_timeout(send_timeout_),
|
|
|
|
receive_timeout(receive_timeout_),
|
|
|
|
tcp_keep_alive_timeout(tcp_keep_alive_timeout_),
|
2020-02-06 17:23:05 +00:00
|
|
|
http_keep_alive_timeout(http_keep_alive_timeout_),
|
2021-01-19 19:21:06 +00:00
|
|
|
secure_connection_timeout(connection_timeout),
|
|
|
|
receive_hello_timeout(0),
|
|
|
|
receive_tables_status_timeout(0),
|
|
|
|
receive_data_timeout(0)
|
2019-03-29 18:10:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-06 17:23:05 +00:00
|
|
|
ConnectionTimeouts(const Poco::Timespan & connection_timeout_,
|
|
|
|
const Poco::Timespan & send_timeout_,
|
|
|
|
const Poco::Timespan & receive_timeout_,
|
|
|
|
const Poco::Timespan & tcp_keep_alive_timeout_,
|
|
|
|
const Poco::Timespan & http_keep_alive_timeout_,
|
2021-01-19 19:21:06 +00:00
|
|
|
const Poco::Timespan & secure_connection_timeout_,
|
|
|
|
const Poco::Timespan & receive_hello_timeout_,
|
|
|
|
const Poco::Timespan & receive_tables_status_timeout_,
|
|
|
|
const Poco::Timespan & receive_data_timeout_)
|
|
|
|
: connection_timeout(connection_timeout_),
|
|
|
|
send_timeout(send_timeout_),
|
|
|
|
receive_timeout(receive_timeout_),
|
|
|
|
tcp_keep_alive_timeout(tcp_keep_alive_timeout_),
|
|
|
|
http_keep_alive_timeout(http_keep_alive_timeout_),
|
|
|
|
secure_connection_timeout(secure_connection_timeout_),
|
|
|
|
receive_hello_timeout(receive_hello_timeout_),
|
|
|
|
receive_tables_status_timeout(receive_tables_status_timeout_),
|
|
|
|
receive_data_timeout(receive_data_timeout_)
|
2020-02-06 17:23:05 +00:00
|
|
|
{
|
|
|
|
}
|
2017-12-27 17:58:52 +00:00
|
|
|
|
|
|
|
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),
|
2018-10-22 18:09:55 +00:00
|
|
|
saturate(receive_timeout, limit),
|
2019-03-29 18:10:03 +00:00
|
|
|
saturate(tcp_keep_alive_timeout, limit),
|
2020-02-06 17:23:05 +00:00
|
|
|
saturate(http_keep_alive_timeout, limit),
|
2021-01-19 19:21:06 +00:00
|
|
|
saturate(secure_connection_timeout, limit),
|
|
|
|
saturate(receive_hello_timeout, limit),
|
|
|
|
saturate(receive_tables_status_timeout, limit),
|
|
|
|
saturate(receive_data_timeout, limit));
|
2017-12-27 17:58:52 +00:00
|
|
|
}
|
|
|
|
|
2018-03-12 20:25:18 +00:00
|
|
|
/// Timeouts for the case when we have just single attempt to connect.
|
2020-12-10 22:05:02 +00:00
|
|
|
static ConnectionTimeouts getTCPTimeoutsWithoutFailover(const Settings & settings);
|
2018-03-12 20:25:18 +00:00
|
|
|
/// Timeouts for the case when we will try many addresses in a loop.
|
2020-12-10 22:05:02 +00:00
|
|
|
static ConnectionTimeouts getTCPTimeoutsWithFailover(const Settings & settings);
|
|
|
|
static ConnectionTimeouts getHTTPTimeouts(const Context & context);
|
2017-12-27 17:58:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|