Tagged Questions
9
votes
1answer
502 views
a few questions about java thread dump
I am trying to understand more about java, especially about memory management.
For this reason I have recently found interest in looking thread dump.
Here are few lines taken from a web app using ...
6
votes
3answers
161 views
Understanding the Reference Handler thread
I am continuing my path to deep understanding of Java Thread. Unfortunately my Java Certification didn't cover that, so the only way is to post a series of dumb questions, with so many years of Java ...
6
votes
3answers
454 views
How to find an infinite loop in a java web application?
One day our java web application goes up to 100% CPU usage.
A restart solve the incident but not the problem because a few hours after the problem came back.
We suspected a infinite loop introduced by ...
5
votes
3answers
472 views
jstack: Target process not responding
I am running Ubuntu server edition and I wanted to take a thread dump of Tomcat.
So, I first tried to find out which PID tomcat uses:
$ jps -l
5809 sun.tools.jps.Jps
But it's not there?
So, I ...
5
votes
1answer
103 views
Creating a thread dump on OpenVMS
How can I retrieve a thread dump from a running Java process on OpenVMS? The process is not JMX-enabled. I am looking for something similar to kill -QUIT on Unix or Ctrl+Break on Windows.
EDIT: I ...
5
votes
2answers
483 views
With recent Sun JVMs (1.6), is it possible to get GC thread information?
With JRockit, you can get the full list of threads by any means, and all of these means include information about the Garbage Collection Thread(s):
1) Asking the Thread class for the information:
...
4
votes
2answers
825 views
Tomcat Web Application Thread Dump
I have a production web application (Struts, iBatis, Hibernate) that runs in Tomcat that would hang while serving requests after 6 - 7 days of running but would run fine again after doing a thread ...
3
votes
5answers
730 views
How to debug Java OutOfMemory exceptions?
What is the best way to debug java.lang.OutOfMemoryError exceptions?
When this happens to our application, our app server (Weblogic) generates a heap dump file. Should we use the heap dump file? ...
3
votes
4answers
3k views
Thread dump programmatically /JDI (Java Debugger Interface)
I like to generate a thread dump programmatically. I've learned that there a basically two ways to do it:
Use the "Java Virtual Machine Tool Interface" JVM-TI
Use the higher abstracted "Java ...
2
votes
1answer
83 views
What are those java threads starting with “pool”?
I have a problem with a Tomcat server that is unable to shutdown gracefully. I have taken a thread dump after I issued the shutdown command, and it looks like this:
http://pastebin.com/7SW4wZN9
The ...
2
votes
2answers
916 views
Java thread dump where main thread has no call stack? (jsvc)
We have a java process running as a daemon (under jsvc). Every several days it just stops doing any work; output to the logfile stops (it is pretty verbose, on 5-minute intervals) and it consumes no ...
2
votes
5answers
5k views
How do I create a thread dump of a Java Web Start application
Is it possible to get a thread dump of a Java Web Start application? And if so, how?
It would be nice if there were a simple solution, which would enable a non-developer (customer) to create a thread ...
1
vote
3answers
68 views
How can I view memory usage, thread dump for java programs, from command line?
Is there any known command line tool to ask the JVM to see memory usage and thread dumps of a java program. something like a headless jvisualvm?
1
vote
2answers
56 views
What does thread dump looks like when JVM spent time in GC
When profiling Java application I note interesting fact. When JVM is in GC spiral of death thread dump is looks like:
"1304802943@qtp-393978767-9985" prio=10 tid=0x00007f3ed02dd000 nid=0x74e7 in ...
1
vote
1answer
160 views
Orphaned Threads In Java Thread Dump
I'm seeing a frequent occurrence of "Orphaned" threads in thread dumps a java application.
My application itself is appearing to be frozen with very low cpu activity and my thread dumps show many ...
1
vote
1answer
346 views
Java thread dump: BLOCKED thread without “waiting to lock …”
I'm having difficulties in understanding the thread dump I got from jstack for a Spring MVC web application running on Tomcat 6 (java 1.6.0_22, Linux).
I see blocking threads (that cause other ...
1
vote
2answers
183 views
kill -3 return empty
I have a java application, that seems to be stuck. I tried kill -3 but the output is empty (it is redirected to file but nothing is there).
what way can I see what it is doing?
EDIT:
I tried ...
1
vote
2answers
535 views
Getting a thread dump from a frozen Java app without using JStack
When I am trying to use JStack to get the thread dump of my frozen application, one of the threads gives me this result:
Thread 27560: (state = IN_NATIVE)
- ...
1
vote
4answers
2k views
evaluation of a java thread dump
I got a thread dump of one of my processes. It has a bunch of these threads. I guess they are keeping a bunch of memory so I am getting OOM.
"Thread-8264" prio=6 tid=0x4c94ac00 nid=0xf3c runnable ...
1
vote
3answers
2k views
Thread dump not getting generated on JBoss
I used to generate thread dumps by running kill -quit and I would get them in a log file where my server logs were there. When the file grew too large I removed it using rm and created a new file of ...
0
votes
1answer
70 views
Control-Break not working in java using cygwin
I hope this is the right place to ask this, I am running JAVA 7 for Windows 64 bit
. I am using cygwin as the terminal. Every time I try to stop an ongoing program I press control-break, and usually ...
0
votes
4answers
188 views
How to interpret a Java thread dump?
I got a Java web-application here running on Tomcat6 with Ubuntu (server edition).
After 1-3 days, the application becomes very slow, so I created a threaddump after a fresh restart of tomcat and ...
0
votes
1answer
299 views
Java: How to read a locked up thread dump
Can anyone help me understand how I should read this stacktrace?
"Task-Thread-for-com.mchange.v2.async.ThreadPerTaskAsynchronousRunner@488cf1f1" daemon prio=6 tid=0x000000000880f000 nid=0x644 ...
0
votes
2answers
360 views
Thread/Core Dump Analysis Tool
Thread dumps/code dumps provides excellent information about what is happening in the system. Also, JDK provide multiple utilities to generate thread dumps, e.g. jStack, jInfo, Ctrl+\, etc.
But is ...
0
votes
1answer
299 views
Generating Thread Dump on Sun JDK with Timestamp
I need to generate the Thread dumps on Sun Solaris machine for my application which is using Sun's Java5.
I am generating Thread Dump using the following command:
kill -QUIT pid
But the thread ...
0
votes
1answer
109 views
How can I generate thread dump for jnlp application in java
I am trying to debug a jnlp application.
It get hanged after some scenario.
I want to collect thread dump of my jnlp application.
Any suggestion regarding how to do that.
I am running it in Win XP, ...