반응형
HTTP/AJP 연결에 대한 Thread Pool 의 max 개수를 충분한 값으로 설정해 주어야 합니다.
<connector name="ajp" protocol="AJP/1.3" scheme="http" socket-binding="ajp" executor="http-threadpool" max-connections="3260"/>
<connector name="http" protocol="HTTP/1.1" scheme="http" socketbinding="http" enablelookups="false" executor="http-thread-pool" max-connections="3260"/>
스레드 풀 설정
HTTP/AJP 연결에 대한 Thread Pool 을 아래와 같이 Thread subsystem 에서 250 개 스레드를 사용할 수 있도록 설정하였습니다. AJP 연결과 HTTP 연결에 대해 별도의 스레드를 설정하여 지정하는 것도 가능합니다.
<subsystem xmlns="urn:jboss:domain:threads:1.1">
…
<unbounded-queue-thread-pool name="http-thread-pool">
<max-threads count="250"/>
<keepalive-time time="60" unit="minutes"/>
</unbounded-queue-thread-pool>
…
</subsystem>
반응형
'IT 이야기 > JBoss EAP' 카테고리의 다른 글
[JBoss EAP] WAS 서버간 http 또는 https 통신 오류 (0) | 2020.09.11 |
---|---|
[Error_Log] java.lang.IllegalStateException: Cannot create a session after the response has been committed (0) | 2020.05.01 |
[Error_Log] java.lang.NullPointerException (0) | 2020.04.28 |
[Error_Log] java.lang.ArrayIndexOutOfBoundsException (0) | 2020.04.28 |
[Error_Log] java.io.IOException: Stream closed (0) | 2020.04.22 |
댓글