]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
Increase ORB parameter maxGIOPConnectionPerServer to 50
authorRenaud Barate <renaud.barate@edf.fr>
Wed, 8 Oct 2014 09:38:38 +0000 (11:38 +0200)
committerRenaud Barate <renaud.barate@edf.fr>
Wed, 8 Oct 2014 09:38:38 +0000 (11:38 +0200)
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

index a80c723b669eb957e69f63d888a7020969ee7fec..02bdf59a4ba57b199d6c0ec5293b336377b392f8 100644 (file)
@@ -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")