1 Reply Latest reply on Jul 31, 2007 7:41 PM by genman

    Performance Tuning .. Requests get lost?

    jsbhangra

      During performance tuning of my JSP/Struts web-application deployed over jboss.. I have not got success yet.
      During performance/load testing of my web application with apache jmeter.
      It is OK upto 1400 request per minute
      But if i increase the load , i get following
      Issue: from 1800 requests sent to the application only 1283 were processed ,rest of the requests were lost. I reviewed the application logs. It show it received only 1283 requests, and were processed successfully without any database error, or Java heap space error.

      Is it due to lesser thread pool size configured in the Jboss configuration.that prevents it from processing further request ?

      hardware configuration(i use Celeron 3.0Ghz , 1 GB RAM) can be an issue , but the requests should not be lost ..

      Is there any way to tune this load ?
      The required target is whopping 15000 requests per minute.

      Jasdeep

        • 1. Re: Performance Tuning .. Requests get lost?
          genman

          First, create a simple JSP that counts the number of requests (use java.util.concurrent.AtomicInteger), then verify no requests are lost.

          And then application code and functionality, and figure out the performance issue. Likely, it's your backend DB that can't keep up.