
The node infos of the Clustrix servers are now kept around and and updated based upon changing conditions instead of regularly being re-created. Further, the server is now looked up by name only right after having been created (and that only due to runtime_create_server() currently being used). The state of the dynamically created server is now updated directly as a result of the health-check ping, while the state of the bootstrap servers is updated during the tick()-call according to the monitor "protocol".
98 lines
2.6 KiB
C++
98 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2018 MariaDB Corporation Ab
|
|
*
|
|
* Use of this software is governed by the Business Source License included
|
|
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
|
|
*
|
|
* Change Date: 2022-01-01
|
|
*
|
|
* On the date above, in accordance with the Business Source License, use
|
|
* of this software will be governed by version 2 or later of the General
|
|
* Public License.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "clustrixmon.hh"
|
|
#include <map>
|
|
#include <maxscale/monitor.hh>
|
|
#include <maxbase/http.hh>
|
|
#include "clustrixnodeinfo.hh"
|
|
|
|
class ClustrixMonitor : public maxscale::MonitorInstance
|
|
{
|
|
ClustrixMonitor(const ClustrixMonitor&) = delete;
|
|
ClustrixMonitor& operator=(const ClustrixMonitor&) = delete;
|
|
public:
|
|
class Config
|
|
{
|
|
public:
|
|
Config()
|
|
: m_cluster_monitor_interval(DEFAULT_CLUSTER_MONITOR_INTERVAL_VALUE)
|
|
, m_health_check_threshold(DEFAULT_HEALTH_CHECK_THRESHOLD_VALUE)
|
|
{
|
|
};
|
|
|
|
long cluster_monitor_interval() const
|
|
{
|
|
return m_cluster_monitor_interval;
|
|
}
|
|
|
|
void set_cluster_monitor_interval(long l)
|
|
{
|
|
m_cluster_monitor_interval = l;
|
|
}
|
|
|
|
long health_check_threshold() const
|
|
{
|
|
return m_health_check_threshold;
|
|
}
|
|
|
|
void set_health_check_threshold(long l)
|
|
{
|
|
m_health_check_threshold = l;
|
|
}
|
|
|
|
private:
|
|
long m_cluster_monitor_interval;
|
|
long m_health_check_threshold;
|
|
};
|
|
|
|
~ClustrixMonitor();
|
|
|
|
static ClustrixMonitor* create(MXS_MONITOR* pMonitor);
|
|
|
|
bool configure(const MXS_CONFIG_PARAMETER* pParams) override;
|
|
|
|
private:
|
|
ClustrixMonitor(MXS_MONITOR* pMonitor);
|
|
|
|
void pre_loop() override;
|
|
void post_loop() override;
|
|
|
|
void tick();
|
|
|
|
void fetch_cluster_nodes();
|
|
void fetch_cluster_nodes_from(MXS_MONITORED_SERVER& ms);
|
|
void refresh_cluster_nodes();
|
|
void update_server_statuses();
|
|
|
|
void make_health_check();
|
|
void initiate_delayed_http_check();
|
|
bool check_http(Call::action_t action);
|
|
|
|
static long now()
|
|
{
|
|
return mxb::WorkerLoad::get_time_ms();
|
|
}
|
|
|
|
private:
|
|
Config m_config;
|
|
std::vector<std::string> m_config_servers;
|
|
std::map<int, ClustrixNodeInfo> m_node_infos;
|
|
std::vector<std::string> m_health_urls;
|
|
mxb::http::Async m_http;
|
|
uint32_t m_delayed_http_check_id { 0 };
|
|
long m_last_cluster_check { 0 };
|
|
MXS_MONITORED_SERVER* m_pMonitored_server { nullptr };
|
|
};
|