IdoCheckTask: de-couple MySQL and Postgres schema versions

This commit is contained in:
Alexander A. Klimov 2021-06-30 18:07:58 +02:00
parent 83cfb84fe0
commit 9e2f58ea9f
6 changed files with 18 additions and 3 deletions

View File

@ -12,7 +12,6 @@
#include <boost/thread/once.hpp>
#include <mutex>
#define IDO_CURRENT_SCHEMA_VERSION "1.14.3"
#define IDO_COMPAT_SCHEMA_VERSION "1.14.3"
namespace icinga
@ -30,6 +29,8 @@ public:
static void InitializeDbTimer();
virtual const char * GetLatestSchemaVersion() const noexcept = 0;
void SetConfigHash(const DbObject::Ptr& dbobj, const String& hash);
void SetConfigHash(const DbType::Ptr& type, const DbReference& objid, const String& hash);
String GetConfigHash(const DbObject::Ptr& dbobj) const;

View File

@ -140,9 +140,9 @@ void IdoCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult
String schema_version = conn->GetSchemaVersion();
std::ostringstream msgbuf;
if (Utility::CompareVersion(IDO_CURRENT_SCHEMA_VERSION, schema_version) < 0) {
if (Utility::CompareVersion(conn->GetLatestSchemaVersion(), schema_version) < 0) {
msgbuf << "Outdated schema version: '" << schema_version << "'. Latest version: '"
<< IDO_CURRENT_SCHEMA_VERSION << "'."
<< conn->GetLatestSchemaVersion() << "'."
<< " Queries per second: " << std::fixed << std::setprecision(3) << qps
<< " Pending queries: " << std::fixed << std::setprecision(3) << pendingQueries << ".";

View File

@ -21,6 +21,11 @@ using namespace icinga;
REGISTER_TYPE(IdoMysqlConnection);
REGISTER_STATSFUNCTION(IdoMysqlConnection, &IdoMysqlConnection::StatsFunc);
const char * IdoMysqlConnection::GetLatestSchemaVersion() const noexcept
{
return "1.14.3";
}
void IdoMysqlConnection::OnConfigLoaded()
{
ObjectImpl<IdoMysqlConnection>::OnConfigLoaded();

View File

@ -37,6 +37,8 @@ public:
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
const char * GetLatestSchemaVersion() const noexcept override;
int GetPendingQueryCount() const override;
protected:

View File

@ -23,6 +23,11 @@ REGISTER_TYPE(IdoPgsqlConnection);
REGISTER_STATSFUNCTION(IdoPgsqlConnection, &IdoPgsqlConnection::StatsFunc);
const char * IdoPgsqlConnection::GetLatestSchemaVersion() const noexcept
{
return "1.14.3";
}
IdoPgsqlConnection::IdoPgsqlConnection()
{
m_QueryQueue.SetName("IdoPgsqlConnection, " + GetName());

View File

@ -30,6 +30,8 @@ public:
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
const char * GetLatestSchemaVersion() const noexcept override;
int GetPendingQueryCount() const override;
protected: