我在Jboss 7.2.0 standalone.xml中创建了一个有界队列的线程池,如下所示:
<subsystem xmlns="urn:jboss:domain:threads:1.1">
<bounded-queue-thread-pool name="myThreadPool">
<core-threads count="6000"/>
<queue-length count="1000"/>
<max-threads count="6000"/>
<keepalive-time time="60" unit="seconds"/>
</bounded-queue-thread-pool>
</subsystem>
之后我在AJP连接器中使用它作为执行器,如下所示:
<connector name="conn1" protocol="AJP/1.3" scheme="http" socket-binding="conn1" enabled="true" max-post-size="0" executor="myThreadPool" max-connections="2000"/>
<connector name="conn2" protocol="AJP/1.3" scheme="http" socket-binding="conn2" enabled="true" executor="myThreadPool" max-connections="2000"/>
<connector name="conn3" protocol="AJP/1.3" scheme="http" socket-binding="conn3" enabled="true" executor="myThreadPool" max-connections="2000"/>
最后3个连接器的套接字绑定:
<socket-binding name="conn1" port="15007"/>
<socket-binding name="conn2" port="15008"/>
<socket-binding name="conn3" port="15009"/>
当我启动jboss并创建多个http请求时,每个请求线程都创建为myThreadPool-threads-1
,myThreadPool-threads-2
等。但是当我使用命令行关闭jboss时,这些线程不会被终止。这是我用来关闭的命令:
%JBOSS_HOME%\bin\jboss-cli.bat --connect controller=10.10.54.85:9999 --commands=:shutdown
由于这个原因,jboss-AS的java进程没有被杀死。但是,当我只是从executor
中删除connector
时,java进程就会成功终止。有人可以建议我在服务器关闭时如何终止threadPool的所有线程?
答案 0 :(得分:1)
可能this bug是问题的原因,设置了解决方法:
org.apache.coyote.ajp.DEFAULT_CONNECTION_TIMEOUT
将以下内容添加到system-properties
,host.xml
或standalone.xml
中的domain.xml
:
<system-properties>
<property name="org.apache.coyote.ajp.DEFAULT_CONNECTION_TIMEOUT" value="600000"/>
<system-properties>
除非我们不断向服务器发送请求,否则无效。
另请参阅:server hang during shutdown when specifying executor in connector