2012-10-22 19:55:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/PoolBase.h>
|
2012-10-22 19:55:19 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Client/Connection.h>
|
2017-12-27 17:58:52 +00:00
|
|
|
#include <IO/ConnectionTimeouts.h>
|
2012-10-22 19:55:19 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-03-09 00:56:38 +00:00
|
|
|
/** Interface for connection pools.
|
2012-10-22 19:55:19 +00:00
|
|
|
*
|
2017-03-09 00:56:38 +00:00
|
|
|
* Usage (using the usual `ConnectionPool` example)
|
2012-11-02 20:13:41 +00:00
|
|
|
* ConnectionPool pool(...);
|
2012-10-22 19:55:19 +00:00
|
|
|
*
|
2017-04-01 07:20:54 +00:00
|
|
|
* void thread()
|
|
|
|
* {
|
|
|
|
* auto connection = pool.get();
|
|
|
|
* connection->sendQuery("SELECT 'Hello, world!' AS world");
|
|
|
|
* }
|
2012-10-22 19:55:19 +00:00
|
|
|
*/
|
2017-04-17 16:16:04 +00:00
|
|
|
|
2012-11-02 20:13:41 +00:00
|
|
|
class IConnectionPool : private boost::noncopyable
|
2012-10-22 19:55:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
using Entry = PoolBase<Connection>::Entry;
|
2015-10-12 14:53:16 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
virtual ~IConnectionPool() {}
|
|
|
|
|
2017-06-14 19:02:25 +00:00
|
|
|
/// Selects the connection to work.
|
|
|
|
/// If force_connected is false, the client must manually ensure that returned connection is good.
|
|
|
|
virtual Entry get(const Settings * settings = nullptr, bool force_connected = true) = 0;
|
2012-11-02 20:13:41 +00:00
|
|
|
};
|
|
|
|
|
2016-05-28 10:15:36 +00:00
|
|
|
using ConnectionPoolPtr = std::shared_ptr<IConnectionPool>;
|
2017-04-19 17:40:55 +00:00
|
|
|
using ConnectionPoolPtrs = std::vector<ConnectionPoolPtr>;
|
2012-11-02 20:13:41 +00:00
|
|
|
|
2017-03-09 00:56:38 +00:00
|
|
|
/** A common connection pool, without fault tolerance.
|
2012-11-02 20:13:41 +00:00
|
|
|
*/
|
2017-04-19 17:40:55 +00:00
|
|
|
class ConnectionPool : public IConnectionPool, private PoolBase<Connection>
|
2012-11-02 20:13:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
using Entry = IConnectionPool::Entry;
|
|
|
|
using Base = PoolBase<Connection>;
|
|
|
|
|
|
|
|
ConnectionPool(unsigned max_connections_,
|
2018-06-19 18:09:09 +00:00
|
|
|
const String & host_,
|
|
|
|
UInt16 port_,
|
2017-04-01 07:20:54 +00:00
|
|
|
const String & default_database_,
|
2018-06-19 18:09:09 +00:00
|
|
|
const String & user_,
|
|
|
|
const String & password_,
|
2017-12-27 17:58:52 +00:00
|
|
|
const ConnectionTimeouts & timeouts,
|
2017-04-01 07:20:54 +00:00
|
|
|
const String & client_name_ = "client",
|
2017-10-03 14:52:08 +00:00
|
|
|
Protocol::Compression compression_ = Protocol::Compression::Enable,
|
2018-03-29 01:41:06 +00:00
|
|
|
Protocol::Secure secure_ = Protocol::Secure::Disable)
|
2018-06-19 18:09:09 +00:00
|
|
|
: Base(max_connections_,
|
|
|
|
&Logger::get("ConnectionPool (" + host_ + ":" + toString(port_) + ")")),
|
|
|
|
host(host_),
|
|
|
|
port(port_),
|
|
|
|
default_database(default_database_),
|
|
|
|
user(user_),
|
|
|
|
password(password_),
|
|
|
|
client_name(client_name_),
|
|
|
|
compression(compression_),
|
2018-03-29 01:41:06 +00:00
|
|
|
secure{secure_},
|
2017-12-27 17:58:52 +00:00
|
|
|
timeouts(timeouts)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-14 19:02:25 +00:00
|
|
|
Entry get(const Settings * settings = nullptr, bool force_connected = true) override
|
2017-04-19 17:40:55 +00:00
|
|
|
{
|
2017-06-14 19:02:25 +00:00
|
|
|
Entry entry;
|
2017-04-19 17:40:55 +00:00
|
|
|
if (settings)
|
2017-06-14 19:02:25 +00:00
|
|
|
entry = Base::get(settings->queue_max_wait_ms.totalMilliseconds());
|
2017-04-19 17:40:55 +00:00
|
|
|
else
|
2017-06-14 19:02:25 +00:00
|
|
|
entry = Base::get(-1);
|
|
|
|
|
|
|
|
if (force_connected)
|
|
|
|
entry->forceConnected();
|
|
|
|
|
|
|
|
return entry;
|
2017-04-19 17:40:55 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string & getHost() const
|
|
|
|
{
|
|
|
|
return host;
|
|
|
|
}
|
2012-10-22 19:55:19 +00:00
|
|
|
|
2014-06-03 14:32:04 +00:00
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
/** Creates a new object to put in the pool. */
|
|
|
|
ConnectionPtr allocObject() override
|
|
|
|
{
|
|
|
|
return std::make_shared<Connection>(
|
2018-03-29 20:21:01 +00:00
|
|
|
host, port,
|
2017-12-27 17:58:52 +00:00
|
|
|
default_database, user, password, timeouts,
|
2018-03-29 01:41:06 +00:00
|
|
|
client_name, compression, secure);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2014-06-03 14:32:04 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
String host;
|
|
|
|
UInt16 port;
|
|
|
|
String default_database;
|
|
|
|
String user;
|
|
|
|
String password;
|
|
|
|
|
|
|
|
String client_name;
|
2017-10-03 14:52:08 +00:00
|
|
|
Protocol::Compression compression; /// Whether to compress data when interacting with the server.
|
2018-03-29 01:41:06 +00:00
|
|
|
Protocol::Secure secure; /// Whether to encrypt data when interacting with the server.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-27 17:58:52 +00:00
|
|
|
ConnectionTimeouts timeouts;
|
2012-10-22 19:55:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|