1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4193: Delete unused OAM and applications, ProcMon, ProcMgr, and no longer build all tools for packages

This commit is contained in:
benthompson15
2020-12-02 13:14:25 -06:00
parent d2cc656fdf
commit 846f7fb29b
138 changed files with 311 additions and 69494 deletions

View File

@ -187,21 +187,6 @@ void ServiceWriteEngine::setupChildSignalHandlers()
int ServiceWriteEngine::Child()
{
//set BUSY_INIT state
{
// Is there a reason to have a seperate Oam instance for this?
Oam oam;
try
{
oam.processInitComplete("WriteEngineServer", oam::BUSY_INIT);
}
catch (...)
{
}
}
setupChildSignalHandlers();
// Init WriteEngine Wrapper (including Config Columnstore.xml cache)
@ -246,16 +231,6 @@ int ServiceWriteEngine::Child()
}
else
{
Oam oam;
try // Get out of BUSYINIT state; else OAM will not retry
{
oam.processInitComplete("WriteEngineServer");
}
catch (...)
{
}
// If/when a common logging class or function is added to the
// WriteEngineServer, we should use that. In the mean time,
// I will log this errmsg with inline calls to the logging.
@ -310,14 +285,6 @@ int ServiceWriteEngine::Child()
ml.logCriticalMessage( message );
cerr << errMsg << endl;
try
{
oam.processInitFailure();
}
catch (...)
{
}
NotifyServiceInitializationFailed();
return 2;
}
@ -328,18 +295,6 @@ int ServiceWriteEngine::Child()
size_t qs = mt * 100;
ThreadPool tp(mt, qs);
//set ACTIVE state
{
Oam oam;
try
{
oam.processInitComplete("WriteEngineServer", ACTIVE);
}
catch (...)
{
}
}
cout << "WriteEngineServer is ready" << endl;
NotifyServiceStarted();