WildFly Threads Subsystem Configuration: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
=Thread Factory Configuration= | =Thread Factory Configuration= | ||
<pre> | |||
<subsystem xmlns="urn:jboss:domain:threads:1.1"> | |||
<thread-factory name="http-connector-factory" thread-name-pattern="HTTP-%t" priority="9" group-name="http-threads"/> | |||
... | |||
</subsystem> | |||
</pre> | |||
where | |||
==name== | |||
==thread-name-pattern== | |||
==priority== | |||
==group-name== | |||
=Executor Configuration= | =Executor Configuration= | ||
<pre> | <pre> | ||
<subsystem xmlns="urn:jboss:domain:threads:1.1"> | <subsystem xmlns="urn:jboss:domain:threads:1.1"> | ||
... | |||
<unbounded-queue-thread-pool name=" | <unbounded-queue-thread-pool name="http-thread-pool"> | ||
<max-threads count="500"/> | <max-threads count="500"/> | ||
<keepalive-time time="30" unit="seconds"/> | <keepalive-time time="30" unit="seconds"/> | ||
Line 27: | Line 42: | ||
</subsystem> | </subsystem> | ||
</pre> | </pre> | ||
where | |||
==max-thread-count== | |||
==keepalive-time time== | |||
==thread-factory== | |||
The <tt><thread-factory></tt> <tt>name</tt> should refer the thread factory previously defined. |
Revision as of 21:35, 8 June 2016
External
- Define Thread Pools for HTTP Connectors https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.4/html/Administration_and_Configuration_Guide/sect-Connector_Configuration.html#Define_Thread_Pools_for_HTTP_Connector_in_JBoss_Enterprise_Application_Platform
Internal
Overview
This page describes the steps required to define an executor and its associated thread factory. For a description behind the WildFly executor model, see WildFly Threads Subsystem Executor Model. The example below is fit to be used with a JBossWeb HTTP connector.
Thread Factory Configuration
<subsystem xmlns="urn:jboss:domain:threads:1.1"> <thread-factory name="http-connector-factory" thread-name-pattern="HTTP-%t" priority="9" group-name="http-threads"/> ... </subsystem>
where
name
thread-name-pattern
priority
group-name
Executor Configuration
<subsystem xmlns="urn:jboss:domain:threads:1.1"> ... <unbounded-queue-thread-pool name="http-thread-pool"> <max-threads count="500"/> <keepalive-time time="30" unit="seconds"/> <thread-factory name="http-connector-factory"/> </unbounded-queue-thread-pool> </subsystem>
where
max-thread-count
keepalive-time time
thread-factory
The <thread-factory> name should refer the thread factory previously defined.