Re: NIO 100% CPU usage

2008-10-16 Thread Jerome Jar
Ronald, thread dumps contain the native ID of threads, and ps can output such IDs as well, so you can match the output together. Been there, done that. On Thu, Oct 16, 2008 at 7:16 PM, Ronald Klop [EMAIL PROTECTED]wrote: Filip, How do your top or ps commands relate to threads in the thread

Re: Tomcat CPU 100%

2008-05-08 Thread Jerome Jar
Hi, Andrea, Look at this: http://iusr.spaces.live.com/blog/cns!69F4725ED815E770!408.entry A summary of mine after resolving the same problem. It's quite clear from the thread dump to tell which thread is running into a JSP page. Cheers, Jerome On Wed, May 7, 2008 at 10:19 PM, Andrea Di Muro

Re: 100% cpu usage by VM Thread in tomcat

2007-09-22 Thread Jerome Jar
Hi, Lindsay, Sorry for my ignorance, but seeing that you were trying to locate the thread using PID, I think perhaps it's wrong. I have the same experience identifying such a CPU utilization issue on a Debian box using a 2.6.x version kernel. I cannot recall whether on a 2.4.x kernal linux box

Re: Auto Reload Features by Tomcat

2006-06-02 Thread Jerome Jar
I think it's because that you just enabled the Auto Build feature of eclipse, so every time you changed your java source, eclipse built it for you, and tomcat saw the class files changed and then reloaded that context. But when you metioned for my production, I guess that machine do not have an

Re: How to get process/threads dump when running tomcat in console

2006-05-28 Thread Jerome Jar
maybe you can try antiJARLocking and antiResourceLocking, though they only *SOMETIMES* worked for me :S 2006/5/27, Mike Klein [EMAIL PROTECTED]: I have a webapp with some problem libraries (FreeTTS...speechSynth) that aren't freeing up when I call deallocate methods on synthesizer. As a

Re: looking for TOMCAT monitor

2006-05-27 Thread Jerome Jar
Seems no such *FREE* tools. I'm using Lambda Probe, http://lambdaprobe.org/ , handy tool. 2006/5/28, Xuekun Hu [EMAIL PROTECTED]: Hi, I'm a newbie of TOMCAT. Is there a easy use and easy install TOMCAT monitor tool available? I just want to monitor some basic performance counters, like average

Re: I'm a newbie

2006-05-24 Thread Jerome Jar
I think eclipse was just unable to validate that xml file, it's likely the DTD file cannot be fetched by eclipse for some reason, e.g., network problems, DNS resolving failed. It's not a tomcat related issue. 2006/5/24, [EMAIL PROTECTED] [EMAIL PROTECTED]: I created a dynamic web project in

Re: Object sharing

2006-05-22 Thread Jerome Jar
Well, I think -Xnoclassgc is horrible. And singleton objects cannot be shared among different application contexts, because they use different classloaders. Shared objects is better held in somewhere else, e.g., JNDI, although I usually blame it =) 2006/5/22, Corobitsyn Roman [EMAIL PROTECTED]:

Re: Object sharing

2006-05-22 Thread Jerome Jar
Oh I'm terribly sorry I miss the line you said into shared/lib or shared/classes. Forget that =P 2006/5/22, Corobitsyn Roman [EMAIL PROTECTED]: Hi Sharing is possible with Tomcat You must put your objects in shared classloader For example: public class ObjectPool { private static