You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-31 18:30:33 +03:00 
			
		
		
		
	nonglobaled procmgr dbstorage and fix package install, missing bracket
This commit is contained in:
		| @@ -58,7 +58,6 @@ bool HDFS = false; | ||||
| string localHostName; | ||||
| string PMwithUM = "n"; | ||||
| string MySQLRep = "n"; | ||||
| string DBRootStorageType = "internal"; | ||||
|  | ||||
| // pushing the ACTIVE_ALARMS_FILE to all nodes every 10 seconds. | ||||
| const int ACTIVE_ALARMS_PUSHING_INTERVAL = 10; | ||||
| @@ -170,7 +169,7 @@ int main(int argc, char **argv) | ||||
| 	if ( DBRootStorageType == "hdfs" ) | ||||
| 		HDFS = true; | ||||
|  | ||||
| 	log.writeLog(__LINE__, "DBRootStorageType = " + DBRootStorageType, LOG_TYPE_DEBUG); | ||||
| 	log.writeLog(__LINE__, "Main: DBRootStorageType = " + DBRootStorageType, LOG_TYPE_DEBUG); | ||||
|  | ||||
| 	//PMwithUM config  | ||||
| 	try { | ||||
| @@ -1016,6 +1015,15 @@ void pingDeviceThread() | ||||
| 		extDeviceInfoList.insert(extDeviceList::value_type(name, 0)); | ||||
| 	} | ||||
|  | ||||
| 	//storage config  | ||||
| 	string DBRootStorageType; | ||||
| 	try { | ||||
| 		oam.getSystemConfig( "DBRootStorageType", DBRootStorageType); | ||||
| 	} | ||||
| 	catch(...) {} | ||||
|  | ||||
| 	log.writeLog(__LINE__, "pingDeviceThread: DBRootStorageType = " + DBRootStorageType, LOG_TYPE_DEBUG); | ||||
|  | ||||
| 	int rtnCode = 0; | ||||
| 	Configuration configData; | ||||
| 	SystemStatus systemstatus; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user