2021-09-04 21:12:10 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_10_0.dtd">
|
2020-10-31 05:53:36 +07:00
|
|
|
|
|
|
|
<Configure>
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
<!-- Configure the Server Thread Pool. -->
|
|
|
|
<!-- The server holds a common thread pool which is used by -->
|
|
|
|
<!-- default as the executor used by all connectors and servlet -->
|
|
|
|
<!-- dispatches. -->
|
|
|
|
<!-- -->
|
|
|
|
<!-- Configuring a fixed thread pool is vital to controlling the -->
|
|
|
|
<!-- maximal memory footprint of the server and is a key tuning -->
|
|
|
|
<!-- parameter for tuning. In an application that rarely blocks -->
|
|
|
|
<!-- then maximal threads may be close to the number of 5*CPUs. -->
|
|
|
|
<!-- In an application that frequently blocks, then maximal -->
|
|
|
|
<!-- threads should be set as high as possible given the memory -->
|
|
|
|
<!-- available. -->
|
|
|
|
<!-- -->
|
|
|
|
<!-- Consult the javadoc of o.e.j.util.thread.QueuedThreadPool -->
|
|
|
|
<!-- for all configuration that may be set here. -->
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
<New id="threadPool" class="org.eclipse.jetty.util.thread.QueuedThreadPool">
|
|
|
|
<Set name="minThreads" type="int"><Property name="jetty.threadPool.minThreads" deprecated="threads.min" default="10"/></Set>
|
|
|
|
<Set name="maxThreads" type="int"><Property name="jetty.threadPool.maxThreads" deprecated="threads.max" default="200"/></Set>
|
|
|
|
<Set name="reservedThreads" type="int"><Property name="jetty.threadPool.reservedThreads" default="-1"/></Set>
|
|
|
|
<Set name="idleTimeout" type="int"><Property name="jetty.threadPool.idleTimeout" deprecated="threads.timeout" default="60000"/></Set>
|
|
|
|
<Set name="detailedDump" type="boolean"><Property name="jetty.threadPool.detailedDump" default="false"/></Set>
|
|
|
|
</New>
|
2021-09-04 21:12:10 +07:00
|
|
|
</Configure>
|