我在JBoss7.1.1.Final上配置了一個AJP連接器。我分配一個線程池,該連接器蒙山一些「壞」的配置:jboss 7域:線程配置
<bounded-queue-thread-pool name="ajp-executor">
<core-threads count="10" per-cpu="20"/>
<queue-length count="10" per-cpu="20"/>
<max-threads count="10" per-cpu="20"/>
<keepalive-time time="10" unit="seconds"/>
</bounded-queue-thread-pool>
我關閉和啓動我的JBoss和standalone.xml想出了另一種配置:
<bounded-queue-thread-pool name="ajp-executor">
<core-threads count="90"/>
<queue-length count="90"/>
<max-threads count="90"/>
<keepalive-time time="10" unit="seconds"/>
</bounded-queue-thread-pool>
這是一個正確的。好吧,JBoss刪除了「壞」配置。但是,爲什麼計數是90? JBoss如何計算這個值?