-
1. Re: JBoss http thread block reading in SPECjEnterprise2010
hypheng Jan 11, 2013 1:37 AM (in response to hypheng)Anyone can help with this issue?
I can reach injection rate 500 now, but I used 9000 threads.
I don't think it's reasonable to use so much threads on a 8 core machine.
-
2. Re: JBoss http thread block reading in SPECjEnterprise2010
asoldano Jan 11, 2013 4:10 AM (in response to hypheng)Hi Haifenf,
I suggest moving this thread to a different section of the forum, this does not actually seem a directly WS related issue, but something related to the lower web layer.
-
3. Re: JBoss http thread block reading in SPECjEnterprise2010
hypheng Jan 11, 2013 4:56 AM (in response to asoldano)Thank you for reminding
-
4. Re: JBoss http thread block reading in SPECjEnterprise2010
jfclere Jan 11, 2013 6:28 AM (in response to hypheng)make sure that native is used otherwise you need a lot of threads (which seems to be the problem).
Adittionally it would be nice to know the platform/os as well as the version of AS7 you are testing.
-
5. Re: JBoss http thread block reading in SPECjEnterprise2010
whitingjr Jan 15, 2013 4:08 AM (in response to jfclere)Jean-Frederic, it seems Haifenf is already using the native connector and is having problems with it.
Hi Haifenf,
This behaviour has been seen before when scaling up with the native connector.
My advice is to try using the Java NIO connector recently integrated in as7.2. Change your configuration with native="false" to see if the problem continues.
<subsystem xmlns="urn:jboss:domain:web:1.2" default-virtual-server="default-host" native="false">
Regards,
Jeremy
-
6. Re: JBoss http thread block reading in SPECjEnterprise2010
whitingjr Jan 15, 2013 4:10 AM (in response to whitingjr)1 of 1 people found this helpfulNot fogetting the following line in the configuration.
<connector name="http" protocol="org.apache.coyote.http11.Http11NioProtocol" scheme="http" socket-binding="http" executor="JBossWeb" max-connections="xxxx"/>
Jeremy
-
7. Re: JBoss http thread block reading in SPECjEnterprise2010
hypheng Jan 15, 2013 8:27 AM (in response to hypheng)I'm running on rhel 6.3 and using JBoss EAP 6.0.0.GA (AS 7.1.2.Final-redhat-1)
Thank you, Jeremy.
I can't use the nio http.
The class cannot be found.
Do you mean I need to use AS 7.2?
I can't find where to download the binary.
Should I build from the git source base?
-
8. Re: JBoss http thread block reading in SPECjEnterprise2010
whitingjr Jan 15, 2013 11:34 AM (in response to hypheng)Do you mean I need to use AS 7.2?
Yes
Should I build from the git source base?
Yes.
"master" branch is the one to build.
-
9. Re: JBoss http thread block reading in SPECjEnterprise2010
hypheng Jan 17, 2013 2:24 AM (in response to hypheng)Thank Jeremy.
I've not built AS 7.2.
I used ARP connector and it can reduce the threads to hundreds.
Just curious, why ARP connector shipped with JBoss binary.