1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-02 12:41:17 +03:00

MCOL-1244 - default install to non-distributed

This commit is contained in:
David Hill
2018-10-11 18:02:04 -05:00
parent 8cb45b5893
commit 09c379422d
4 changed files with 5 additions and 4 deletions

View File

@@ -5634,7 +5634,7 @@ int processCommand(string* arguments)
int DataRedundancyNetworkType;
int DataRedundancyStorageType;
string AmazonVPCNextPrivateIP;
string DistributedInstall = "y";
string DistributedInstall = "n";
try
{
@@ -5644,6 +5644,7 @@ int processCommand(string* arguments)
oam.getSystemConfig("DataRedundancyCopies", DataRedundancyCopies);
oam.getSystemConfig("DataRedundancyNetworkType", DataRedundancyNetworkType);
oam.getSystemConfig("DataRedundancyStorageType", DataRedundancyStorageType);
oam.getSystemConfig("DistributedInstall", DistributedInstall);
}
catch (...) {}

View File

@@ -747,7 +747,7 @@ static void startMgrProcessThread()
}
//get Distributed Install
string DistributedInstall = "y";
string DistributedInstall = "n";
try
{

View File

@@ -4842,7 +4842,7 @@ int ProcessManager::addModule(oam::DeviceNetworkList devicenetworklist, std::str
pthread_mutex_lock(&THREAD_LOCK);
//get Distributed Install
string DistributedInstall = "y";
string DistributedInstall = "n";
try
{

View File

@@ -1006,7 +1006,7 @@ void ProcessMonitor::processMessage(messageqcpp::ByteStream msg, messageqcpp::IO
log.writeLog(__LINE__, "STOPALL: ACK back to ProcMgr, return status = " + oam.itoa((int) requestStatus));
//Remove MariaDB ColumnStore PGK on REMOVE option if distubuted install
string DistributedInstall = "y";
string DistributedInstall = "n";
try
{