You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL4841 dev port run large join without OOM
This commit is contained in:
@ -297,7 +297,11 @@ void DistributedEngineComm::Setup()
|
||||
writeToLog(__FILE__, __LINE__,
|
||||
"Could not connect to PMS" + std::to_string(connectionId) + ": " + ex.what(),
|
||||
LOG_TYPE_ERROR);
|
||||
cerr << "Could not connect to PMS" << std::to_string(connectionId) << ": " << ex.what() << endl;
|
||||
if (newPmCount == 0)
|
||||
{
|
||||
writeToLog(__FILE__, __LINE__, "No more PMs to try to connect to", LOG_TYPE_ERROR);
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
@ -306,6 +310,11 @@ void DistributedEngineComm::Setup()
|
||||
|
||||
writeToLog(__FILE__, __LINE__, "Could not connect to PMS" + std::to_string(connectionId),
|
||||
LOG_TYPE_ERROR);
|
||||
if (newPmCount == 0)
|
||||
{
|
||||
writeToLog(__FILE__, __LINE__, "No more PMs to try to connect to", LOG_TYPE_ERROR);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user