2013-09-05 11:44:10 +00:00
|
|
|
#include <mysqlxx/PoolWithFailover.h>
|
|
|
|
|
2017-01-13 21:24:59 +00:00
|
|
|
|
2017-07-27 23:28:45 +00:00
|
|
|
/// Duplicate of code from StringUtils.h. Copied here for less dependencies.
|
2017-07-27 21:07:41 +00:00
|
|
|
static bool startsWith(const std::string & s, const char * prefix)
|
|
|
|
{
|
|
|
|
return s.size() >= strlen(prefix) && 0 == memcmp(s.data(), prefix, strlen(prefix));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 11:44:10 +00:00
|
|
|
using namespace mysqlxx;
|
|
|
|
|
2020-03-08 21:04:10 +00:00
|
|
|
PoolWithFailover::PoolWithFailover(const Poco::Util::AbstractConfiguration & config,
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string & config_name, const unsigned default_connections,
|
|
|
|
const unsigned max_connections, const size_t max_tries)
|
|
|
|
: max_tries(max_tries)
|
2013-09-05 11:44:10 +00:00
|
|
|
{
|
2020-03-08 21:04:10 +00:00
|
|
|
shareable = config.getBool(config_name + ".share_connection", false);
|
|
|
|
if (config.has(config_name + ".replica"))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
Poco::Util::AbstractConfiguration::Keys replica_keys;
|
2020-03-08 21:04:10 +00:00
|
|
|
config.keys(config_name, replica_keys);
|
2017-07-27 20:22:53 +00:00
|
|
|
for (const auto & replica_config_key : replica_keys)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 21:07:41 +00:00
|
|
|
/// There could be another elements in the same level in configuration file, like "password", "port"...
|
|
|
|
if (startsWith(replica_config_key, "replica"))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 20:22:53 +00:00
|
|
|
std::string replica_name = config_name + "." + replica_config_key;
|
2017-07-27 20:40:32 +00:00
|
|
|
|
2020-03-08 21:04:10 +00:00
|
|
|
int priority = config.getInt(replica_name + ".priority", 0);
|
2017-07-27 20:40:32 +00:00
|
|
|
|
|
|
|
replicas_by_priority[priority].emplace_back(
|
2020-03-08 21:04:10 +00:00
|
|
|
std::make_shared<Pool>(config, replica_name, default_connections, max_connections, config_name.c_str()));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-07-27 20:40:32 +00:00
|
|
|
replicas_by_priority[0].emplace_back(
|
2020-03-08 21:04:10 +00:00
|
|
|
std::make_shared<Pool>(config, config_name, default_connections, max_connections));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-02-05 18:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PoolWithFailover::PoolWithFailover(const std::string & config_name, const unsigned default_connections,
|
2017-04-01 07:20:54 +00:00
|
|
|
const unsigned max_connections, const size_t max_tries)
|
|
|
|
: PoolWithFailover{
|
|
|
|
Poco::Util::Application::instance().config(), config_name,
|
2017-07-27 20:22:53 +00:00
|
|
|
default_connections, max_connections, max_tries}
|
2015-02-05 18:47:45 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
PoolWithFailover::PoolWithFailover(const PoolWithFailover & other)
|
2020-02-27 09:34:06 +00:00
|
|
|
: max_tries{other.max_tries}, config_name{other.config_name}, shareable{other.shareable}
|
2015-02-05 18:47:45 +00:00
|
|
|
{
|
2019-10-08 17:27:00 +00:00
|
|
|
if (shareable)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2019-10-08 17:27:00 +00:00
|
|
|
replicas_by_priority = other.replicas_by_priority;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (const auto & priority_replicas : other.replicas_by_priority)
|
|
|
|
{
|
|
|
|
Replicas replicas;
|
|
|
|
replicas.reserve(priority_replicas.second.size());
|
|
|
|
for (const auto & pool : priority_replicas.second)
|
|
|
|
replicas.emplace_back(std::make_shared<Pool>(*pool));
|
|
|
|
replicas_by_priority.emplace(priority_replicas.first, std::move(replicas));
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2013-09-05 11:44:10 +00:00
|
|
|
}
|
|
|
|
|
2020-03-23 02:12:31 +00:00
|
|
|
PoolWithFailover::Entry PoolWithFailover::get()
|
2013-09-05 11:44:10 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Poco::Util::Application & app = Poco::Util::Application::instance();
|
2017-07-27 21:07:41 +00:00
|
|
|
std::lock_guard<std::mutex> locker(mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-27 20:22:53 +00:00
|
|
|
/// If we cannot connect to some replica due to pool overflow, than we will wait and connect.
|
2017-07-27 20:52:14 +00:00
|
|
|
PoolPtr * full_pool = nullptr;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (size_t try_no = 0; try_no < max_tries; ++try_no)
|
|
|
|
{
|
|
|
|
full_pool = nullptr;
|
|
|
|
|
2017-07-27 20:40:32 +00:00
|
|
|
for (auto & priority_replicas : replicas_by_priority)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 20:40:32 +00:00
|
|
|
Replicas & replicas = priority_replicas.second;
|
|
|
|
for (size_t i = 0, size = replicas.size(); i < size; ++i)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 20:52:14 +00:00
|
|
|
PoolPtr & pool = replicas[i];
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-03-23 02:12:31 +00:00
|
|
|
Entry entry = shareable ? pool->get() : pool->tryGet();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (!entry.isNull())
|
|
|
|
{
|
2017-07-27 20:22:53 +00:00
|
|
|
/// Move all traversed replicas to the end of queue.
|
|
|
|
/// (No need to move replicas with another priority)
|
2017-04-01 07:20:54 +00:00
|
|
|
std::rotate(replicas.begin(), replicas.begin() + i + 1, replicas.end());
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const Poco::Exception & e)
|
|
|
|
{
|
2019-02-23 15:10:14 +00:00
|
|
|
if (e.displayText().find("mysqlxx::Pool is full") != std::string::npos) /// NOTE: String comparison is trashy code.
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 20:52:14 +00:00
|
|
|
full_pool = &pool;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 20:52:14 +00:00
|
|
|
app.logger().warning("Connection to " + pool->getDescription() + " failed: " + e.displayText());
|
2017-04-01 07:20:54 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-27 20:52:14 +00:00
|
|
|
app.logger().warning("Connection to " + pool->getDescription() + " failed.");
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 19:35:04 +00:00
|
|
|
app.logger().error("Connection to all replicas failed " + std::to_string(try_no + 1) + " times");
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (full_pool)
|
|
|
|
{
|
2017-07-27 20:52:14 +00:00
|
|
|
app.logger().error("All connections failed, trying to wait on a full pool " + (*full_pool)->getDescription());
|
2020-03-23 02:12:31 +00:00
|
|
|
return (*full_pool)->get();
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::stringstream message;
|
|
|
|
message << "Connections to all replicas failed: ";
|
2017-07-27 20:52:14 +00:00
|
|
|
for (auto it = replicas_by_priority.begin(); it != replicas_by_priority.end(); ++it)
|
|
|
|
for (auto jt = it->second.begin(); jt != it->second.end(); ++jt)
|
|
|
|
message << (it == replicas_by_priority.begin() && jt == it->second.begin() ? "" : ", ") << (*jt)->getDescription();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
throw Poco::Exception(message.str());
|
2013-09-05 11:44:10 +00:00
|
|
|
}
|