Re: Has anyone created a WSDL for the Manager Application

2009-05-27 Thread Peter Lin
I think he wants it in XML format, and be able to bind it to an object model On Wed, May 27, 2009 at 1:29 PM, Mark Thomas ma...@apache.org wrote: Mike Oliver wrote: Ok perhaps I was unclear. I have multiple instances of Tomcat installed and need to manage the applications deployed on those

Re: Apache httpd vs Tomcat static content performance [Revised/Updated]

2009-05-18 Thread Peter Lin
If you need to serve static files for a high volume website, you're better off paying a specialty provider for it. Back when I worked at verizon, we used Akamai for static files like images etc. serving up a ton of large static files quickly swamps your bandwidth, so the question isn't whether

Re: [OT] Performance Requirements

2008-07-03 Thread Peter Lin
there's plenty of papers on the topic on the internet, including the ones listed on tomcat's website. have you looked at the resource page? http://tomcat.apache.org/resources.html On Thu, Jul 3, 2008 at 9:05 AM, Filip Hanik - Dev Lists [EMAIL PROTECTED] wrote: there is one criteria that I

Re: Jrockit Vs Sun

2008-06-17 Thread Peter Lin
I've compared JRockit 1.4 and 1.5 in the past against SUN and it was faster for synthetic benchmarks. I don't work for BEA, but I do like JRockit. One thing that is different in JRockit is it dynamically resizes the perm generation, so in some cases it's better than SUN jvm. peter On Tue, Jun

Re: Jrockit Vs Sun

2008-06-17 Thread Peter Lin
I don't know the internals. From my understanding, the generations setting is configurable. I would suggest looking at the docs for an authorative answer. peter On Tue, Jun 17, 2008 at 2:06 PM, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Peter Lin [mailto:[EMAIL PROTECTED] Subject: Re

Re: Tomcat Performance

2008-01-31 Thread Peter Lin
yes, most hardware load balancer handle sticky sessions. this was back in 2001-2002. I don't know which model number it was, but it was part of cisco's local director line of routers. peter On Jan 31, 2008 3:46 AM, andrey.morskoy [EMAIL PROTECTED] wrote: About cisco: Peter Lin, what

Re: Tomcat Performance

2008-01-30 Thread Peter Lin
from past experience, it's much better to use hardware load balancing. At a previous job, we had any where from 12-24 servers load balanced behind a cisco local director. Any load balancing router today can do the job, it doesn't have to be cisco. What I did in the past was to take production

Re: Tomcat Performance Question

2008-01-26 Thread Peter Lin
30,000 requests in 10 seconds probably isn't normal traffic, but it could represent a sudden spike. think of it another way, that's 3,000 requests per second. If we calculate that for a 10 hour period, it puts things in perspective 1000 req/sec * 60 sec/min = 60,000 req/min 60,000 req/min * 60

Re: Tomcat Performance Question

2008-01-26 Thread Peter Lin
web application is doing. Ultimately, using JMeter you need to look here: http://wiki.apache.org/jakarta-jmeter/ A expert in this area is Peter Lin: http://tomcat.apache.org/articles/performance.pdf The JMeter has specific JSF testing reading: http://wiki.apache.org/myfaces

Re: Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Peter Lin
I'm gonna say that's quite a bit of myth here. If SSL is important, get a cheap SSL enabled router. Doing software SSL is waste of CPU power and impacts the server's stability. Anyone that has a lot of HTTPS traffic shouldn't be using software SSL in my bias opinion. If you are so desparate

Re: Performance Tuning on Tomcat 5.5.16 for site with 150,000 daily hits

2006-03-26 Thread Peter Lin
supporting 150,000 page views a day isn't a problem. I know first hand it can handle that kind of load. the bigger question is whether or not the design of the application will scale well for 1000 virtual hosts. What I've done in the past is to get some sample traffic and then start testing a

Re: Sad: Tomcat 5.5.x crashes almost every single day.

2006-03-01 Thread Peter Lin
my advice is dive in and try to debug it, or hire someone with experience debugging webapps. there's no much others can do for you at this point, since it's debugging. good luck. peter On 3/1/06, Tomasz Nowak [EMAIL PROTECTED] wrote: Tomasz Nowak [EMAIL PROTECTED] wrote: Hm. Here is my

Re: Sad: Tomcat 5.5.x crashes almost every single day.

2006-03-01 Thread Peter Lin
PROTECTED] wrote: Peter Lin [EMAIL PROTECTED] wrote: my advice is dive in and try to debug it, or hire someone with experience debugging webapps. there's no much others can do for you at this point, since it's debugging. good luck. I've just meant configuring the logging system: So

Re: Sad: Tomcat 5.5.x crashes almost every single day.

2006-02-28 Thread Peter Lin
another potential solution is to try a different JVM like Bea's JRockit. JRockit provides some built in profiling capabilities, so that is another way to get some profile data quickly. peter On 2/28/06, Tim Lucia [EMAIL PROTECTED] wrote: I use JProfiler with Tomcat all the time.

Re: Sad: Tomcat 5.5.x crashes almost every single day.

2006-02-28 Thread Peter Lin
On 2/28/06, Tomasz Nowak [EMAIL PROTECTED] wrote: I've not noticed more then 400-500 java threads, but I'll monitor that. I've set different ulimits form differnt users, BUT user that runs java/tomcat has no limits but one: -s 2048 (stacksize). AFAIK that one was recommended by

Re: Sad: Tomcat 5.5.x crashes almost every single day.

2006-02-28 Thread Peter Lin
On 2/28/06, Tomasz Nowak [EMAIL PROTECTED] wrote: Peter Lin [EMAIL PROTECTED] wrote: look at the dump, it looks like the permgen ran out of space PSPermGen total 50304K, used 50170K [0x445f, 0x4771, 0x545f) object space 50304K, 99% used

Re: [OT] 64Bit Java doesn't honour Xmx,Xms settings?

2006-01-17 Thread Peter Lin
permgen isn't affected by the normal -Xms -Xmx you have to explicitly set the permGen using the proper setting. I forget the exact syntax at the moment, but it should be archived on the mailing list. peter On 1/17/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Did you check if the

Re: Fw: Performance degradation under load

2005-12-15 Thread Peter Lin
under normal conditions, a single webserver shouldn't have several thousand DB connections. that seems a bit odd to me. peter lin On 12/15/05, Martin Gainty [EMAIL PROTECTED] wrote: Marc- what types of Coyote Point Equalizers are you using? What does the Doc say about configuring the CPE

Re: Performance degradation under load

2005-12-15 Thread Peter Lin
sounds like you have a big big mainframe, so I also doubt the database server is an issue. Is there any firewall between tomcat and the database server? it could be the firewall is limiting the number of connections and therefore forcing the db connection pool to wait longer than it should to

Re: Performance degradation under load

2005-12-15 Thread Peter Lin
to the internet so I just have it directly opened to the db. Thanks for the chat anyway. I have not used a profiler for a Win32 web server before. Do you have any recommendation? -marc --- Peter Lin [EMAIL PROTECTED] wrote: sounds like you have a big big mainframe, so I also doubt the database

Re: Managing concurrent high memory processes

2005-11-18 Thread Peter Lin
sounds like you have a heafty reporting process, which loads a ton of data and generates a large report. I definitely wouldn't recommend running these processes within a single instance of Tomcat. You'll easily eat all the available RAM and get OOME. A better approach would be to off-load the

Re: Monitoring Tomcat with SNMP?

2005-11-04 Thread Peter Lin
tomcat has the status servlet, so you could use that to monitor tomcat. other than that, you'd probably have to write a servlet to return snmp results peter On 11/4/05, Dave Morrow [EMAIL PROTECTED] wrote: Does anyone out there have any experience with monitoring Tomcat using the SNMP agent