You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2010/05/28 01:28:34 UTC

svn commit: r949039 - /servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg

Author: gertv
Date: Thu May 27 23:28:34 2010
New Revision: 949039

URL: http://svn.apache.org/viewvc?rev=949039&view=rev
Log:
SMXCOMP-725: Provide a sample configuration in the NMR assembly

Modified:
    servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg

Modified: servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg?rev=949039&r1=949038&r2=949039&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg (original)
+++ servicemix/smx4/nmr/trunk/assembly/src/main/filtered-resources/etc/org.apache.servicemix.jbi.cfg Thu May 27 23:28:34 2010
@@ -20,3 +20,15 @@
 # When using a forced shutdown of a SA, all pending synchronous exchanges will be canceled after this timeout
 # The value is specified in ms, the default value of 0 will wait indefinitely for all exchanges to finish
 shutdownTimeout=0
+
+# The values below can be used to configure the thread pool size for the ServiceMix JBI components.
+# - corePoolSize defines the core thread pool size (default is 4)
+# - maximumPoolSize defines the maximum thread pool size, -1 means an unbounded thread pool size (default is -1)
+# - queueSize defines the executor queue size (default is 1024)
+# - allowCoreThreadTimeout allows the core threads to timeout (defaults to true)
+# - keepAliveTime is the amount of milliseconds a thread is kept alive when idle (defaults to 60000)
+corePoolSize=4
+maximumPoolSize=-1
+queueSize=1024
+allowCoreThreadTimeout=true
+keepAliveTime=60000