From 3b026f44b41766c09aceac0a0447f63ece9edebc Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 9 Oct 2018 15:34:35 -0500 Subject: [PATCH] MCOL-1762 - added joblist ThreadPoolSize --- tools/configMgt/autoConfigure.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/configMgt/autoConfigure.cpp b/tools/configMgt/autoConfigure.cpp index 1e7f98fdd..e87401127 100755 --- a/tools/configMgt/autoConfigure.cpp +++ b/tools/configMgt/autoConfigure.cpp @@ -1884,12 +1884,15 @@ int main(int argc, char *argv[]) string PrefetchThreshold; string MaxOutstandingRequests; string PmMaxMemorySmallSide; + string ThreadPoolSize; + try { ColScanReadAheadBlocks = sysConfigOld->getConfig("PrimitiveServers", "ColScanReadAheadBlocks"); PrefetchThreshold = sysConfigOld->getConfig("PrimitiveServers", "PrefetchThreshold"); MaxOutstandingRequests = sysConfigOld->getConfig("JobList", "MaxOutstandingRequests"); PmMaxMemorySmallSide = sysConfigOld->getConfig("HashJoin", "PmMaxMemorySmallSide"); + ThreadPoolSize = sysConfigOld->getConfig("JobList", "ThreadPoolSize"); } catch(...) {} @@ -1899,6 +1902,7 @@ int main(int argc, char *argv[]) sysConfigNew->setConfig("PrimitiveServers", "PrefetchThreshold", PrefetchThreshold); sysConfigNew->setConfig("JobList", "MaxOutstandingRequests", MaxOutstandingRequests); sysConfigNew->setConfig("HashJoin", "PmMaxMemorySmallSide", PmMaxMemorySmallSide); + sysConfigNew->setConfig("JobList", "ThreadPoolSize", ThreadPoolSize); } catch(...) {}