You've already forked mariadb-columnstore-engine
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:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user