WildFly Threads Subsystem Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * WildFly Threads Subsystem")
 
No edit summary
Line 2: Line 2:


* [[WildFly Threads Subsystem#Subjects|WildFly Threads Subsystem]]
* [[WildFly Threads Subsystem#Subjects|WildFly Threads Subsystem]]
=Example=
<pre>
<subsystem xmlns="urn:jboss:domain:threads:1.1">
    <thread-factory name="http-connector-factory" group-name="example-thread-pool" thread-name-pattern="http-%t" priority="9"/>
    <unbounded-queue-thread-pool name="uexample-thread-pool">
        <max-threads count="500"/>
        <keepalive-time time="30" unit="seconds"/>
        <thread-factory name="http-connector-factory"/>
    </unbounded-queue-thread-pool>
</subsystem>
</pre>

Revision as of 20:05, 8 June 2016

Internal

Example

<subsystem xmlns="urn:jboss:domain:threads:1.1">
    <thread-factory name="http-connector-factory" group-name="example-thread-pool" thread-name-pattern="http-%t" priority="9"/>
    <unbounded-queue-thread-pool name="uexample-thread-pool">
        <max-threads count="500"/>
        <keepalive-time time="30" unit="seconds"/>
        <thread-factory name="http-connector-factory"/>
    </unbounded-queue-thread-pool>
</subsystem>