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

Got postConfigure to set up storagemanager correctly and disabled

the disk-check stuff for SM clusters.
This commit is contained in:
Patrick LeBlanc
2019-06-12 09:37:45 -05:00
parent 0ae0761e1a
commit 4ae09352d2
3 changed files with 110 additions and 9 deletions

View File

@ -6316,7 +6316,20 @@ int ProcessMonitor::checkDataMount()
return API_SUCCESS;
}
else if (DBRootStorageType == "storagemanager")
{
/* StorageManager isn't running yet.
IDBFileSystem &fs = IDBFactory::getFs(IDBDataFile::CLOUD);
bool up = fs.filesystemIsUp();
if (!up)
{
log.writeLog(__LINE__, "ERROR: StorageManager is down, check its log files", LOG_TYPE_CRITICAL);
return API_FAILURE;
}
*/
return API_SUCCESS;
}
//go unmount disk NOT assigned to this pm
unmountExtraDBroots();