From 1ceb86fdfeb3685f764bc4693884c4d166775051 Mon Sep 17 00:00:00 2001 From: Renaud Barate Date: Wed, 8 Oct 2014 11:38:38 +0200 Subject: [PATCH] Increase ORB parameter maxGIOPConnectionPerServer to 50 The default parameter (5) restricts the launch of containers in parallel. This value (50) seems a good tradeoff on current machines. It might be necessary to increase it further in the future. --- bin/ORBConfigFile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/ORBConfigFile.py b/bin/ORBConfigFile.py index a80c723b6..02bdf59a4 100644 --- a/bin/ORBConfigFile.py +++ b/bin/ORBConfigFile.py @@ -46,6 +46,7 @@ def writeORBConfigFile(path, host, port, kwargs={}): orbdata.append("%sInitRef = NameService=corbaname::%s:%s"%(prefix,host,port)) orbdata.append("%sgiopMaxMsgSize = %s # 2 GBytes"%(prefix,GIOP_MaxMsgSize)) orbdata.append("%straceLevel = 0 # critical errors only"%(prefix)) + orbdata.append("%smaxGIOPConnectionPerServer = 50 # to allow containers parallel launch"%(prefix)) orbdata.append("") f = open(omniorb_config, "w") -- 2.39.2