You've already forked mariadb-columnstore-engine
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:
@@ -5634,7 +5634,7 @@ int processCommand(string* arguments)
|
|||||||
int DataRedundancyNetworkType;
|
int DataRedundancyNetworkType;
|
||||||
int DataRedundancyStorageType;
|
int DataRedundancyStorageType;
|
||||||
string AmazonVPCNextPrivateIP;
|
string AmazonVPCNextPrivateIP;
|
||||||
string DistributedInstall = "y";
|
string DistributedInstall = "n";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -5644,6 +5644,7 @@ int processCommand(string* arguments)
|
|||||||
oam.getSystemConfig("DataRedundancyCopies", DataRedundancyCopies);
|
oam.getSystemConfig("DataRedundancyCopies", DataRedundancyCopies);
|
||||||
oam.getSystemConfig("DataRedundancyNetworkType", DataRedundancyNetworkType);
|
oam.getSystemConfig("DataRedundancyNetworkType", DataRedundancyNetworkType);
|
||||||
oam.getSystemConfig("DataRedundancyStorageType", DataRedundancyStorageType);
|
oam.getSystemConfig("DataRedundancyStorageType", DataRedundancyStorageType);
|
||||||
|
oam.getSystemConfig("DistributedInstall", DistributedInstall);
|
||||||
}
|
}
|
||||||
catch (...) {}
|
catch (...) {}
|
||||||
|
|
||||||
|
@@ -747,7 +747,7 @@ static void startMgrProcessThread()
|
|||||||
}
|
}
|
||||||
|
|
||||||
//get Distributed Install
|
//get Distributed Install
|
||||||
string DistributedInstall = "y";
|
string DistributedInstall = "n";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@@ -4842,7 +4842,7 @@ int ProcessManager::addModule(oam::DeviceNetworkList devicenetworklist, std::str
|
|||||||
pthread_mutex_lock(&THREAD_LOCK);
|
pthread_mutex_lock(&THREAD_LOCK);
|
||||||
|
|
||||||
//get Distributed Install
|
//get Distributed Install
|
||||||
string DistributedInstall = "y";
|
string DistributedInstall = "n";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@@ -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));
|
log.writeLog(__LINE__, "STOPALL: ACK back to ProcMgr, return status = " + oam.itoa((int) requestStatus));
|
||||||
|
|
||||||
//Remove MariaDB ColumnStore PGK on REMOVE option if distubuted install
|
//Remove MariaDB ColumnStore PGK on REMOVE option if distubuted install
|
||||||
string DistributedInstall = "y";
|
string DistributedInstall = "n";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user