Which HttpConnector do you use ? (HttpConnector or Coyote) Are you shure you set the maxProcessors for the right connector? (Sorry to ask that, but this kind of questions is better asked one time to often than not at all)
If you say "the error message 'servlet status'" do you just mean a log message or an error message ? In the later case, what's the error that is shown ? You also have to look how much of the problem is due to your own application. Make shure that the settings for your connection pool are not the bottle neck. Make shure that you use connections as short as possible. (E.G. don't get the connection at session start and return it at session end, better get it from the pool at ach request.) If you are using apache and tomcat anyway I think you will get more performance if they have their own machine. If you want to know the the difference between tomcat standalone versus tomcat and apache on two different maschines it's a bit more complicated. (That depends on several questions: how are the machines connected to each other, which operation system do you use, what's the size of the pages that you have to serve, etc) I think you have to test that with your application. Ralph Einfeldt Uptime Internet Solution Center GmbH Hamburg, Germany Hosting, Content Management, Java Consulting http://www.uptime-isc.de > -----Urspr�ngliche Nachricht----- > Von: michael wimmer [mailto:[EMAIL PROTECTED]] > Gesendet: Montag, 12. August 2002 23:25 > An: 'Tomcat Users List' > Betreff: tomcat performance and load capability > > I used JMeter for testing and I came up with the insight that > tomcat has problems if I start more than 75 concurrent threads. > - Our provider has uttered that running it on two machines (Solaris), > one containing the apache web server, the other server hosting tomcat > would be the way to do it. Since only a few popup's are HTML and all > other pages have to be handled by Tomcat anyway (I would say more than > 80% off all request are for JSP's), I am concerned if it really is a > good idea to have apache forwarding all pages to a different computer. > Since we HAVE to use our providers shared MySql, the database > server was not part of my performance consideration. > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
