2 Replies Latest reply on Feb 26, 2010 10:04 PM by brsanthu

    JBoss Request Queue Size

      In the Jboss server we can configure the max number of requests Jboss should keep in the buffer if all threads are busy as acceptCount in the jboss.web.connector related mbean.  I'm looking to find the dynamic/runtime queue size so I can understand how many requests were waiting any any point in time to tune the thread pool.

       

      I looked around in the JMX and WebConsole but didn't find this size anywhere.  Do you have any idea about this?

       

      Any help is appreciated.

       

      Thanks,

      Santhosh.

        • 1. Re: JBoss Request Queue Size
          peterj
          Most of the information is kept in the MBean jboss.web:name=http-127.0.0.1-8080,type=ThreadPool (IP address and port number will vary), but the wait queue depth is not tracked.
          • 2. Re: JBoss Request Queue Size

            I think request queue size is one of the important metric we can use to understand the system load especially for high-traffic applications. I'm that jboss/tomcat does't expose this information in the mbean.  Hope it gets added soon.

             

            Thanks for clarifying Peter.