The thread-dump tag has no wiki summary.
1
vote
0answers
26 views
What does it mean when a thread in a java thread dump has no call stack?
I've been given a thread dump generated by jvisualvm for a native shared library which is implemented using JNI. It's running in an app that is calling into it from multiple threads via Dot.Net's ...
0
votes
1answer
59 views
How to find reason of blocking thread in java [closed]
There is a problem with our source of program while we deploy it on server.
When we deploy, it starts working too slowly, sometimes at the beginning and sometimes after several hours.
We reviewed our ...
0
votes
0answers
25 views
java monitor objects: threads BLOCK on some
While desperately trying out anything to unravel my load test glitches I came across TDA, a thread dump analysis tool for Java. Somehow I don't feel I am following its output. For instance, shouldn't ...
1
vote
1answer
54 views
Online Java Thread dump analyzer
I often use Java Thread Dumps for post-mortems and server slowdown analysis. The problem is that the thread dumps are often long, and understanding the concurrency relationship between the threads ...
0
votes
1answer
132 views
Interpreting a tomcat thread dump and diagnosing a deadlock
I have the following thread dump (see below) and I am not sure whether I have a deadlock.
Can anyone please advise?
2013-03-22 08:52:59
Full thread dump Java HotSpot(TM) 64-Bit Server VM (23.7-b01 ...
1
vote
0answers
81 views
How to profile performance under load?
I have a web server that has a few requests performing poorly under heavy load. I tried using the regular tried and tested techniques, but they have various issues.
Attempted techniques
...
0
votes
1answer
32 views
How can i make sure sure the blockage happened on my code
Recently i have a blocked thread situation.
The threadump said the following
"TP-Processor338" daemon prio=10 tid=0x00002aaabd753800 nid=0x37ee runnable [0x0000000046681000]
...
1
vote
1answer
186 views
hidden.edu.emory.mathcs.backport* [closed]
In application thread dump I can see threadpool with five threads like following:
"pool-1-thread-5" prio=10 tid=0x000000000101a000 nid=0xe1f in Object.wait() [0x00007f3c66086000]
...
2
votes
1answer
220 views
ThreadDump issues when almost all threads are in NATIVE state
I took thread dump of a host in my application where most of the threads are in (state = IN_NATIVE) state.
Only couple of threads were blocked at these instances:
Thread 31681: (state = BLOCKED)
- ...
0
votes
3answers
124 views
Taking thread dumps in production
I am analyzing the differences between approaches for taking thread dumps. Below are the couple of them I am researching on
Defining a jmx bean which triggers jstack through Runtime.exec() on ...
1
vote
1answer
56 views
What are the difference between the thread dumps
What are the difference between the thread dumps taken by ctrl+break and java program?
I am using the below snippet to get thread dump
Map st = Thread.getAllStackTraces();
-2
votes
1answer
85 views
It is best to view the thread dump with an analysis tool:
It is best to view the thread dump with an analysis tool:
http://www.cubrid.org/blog/dev-platform/how-to-analyze-java-thread-dumps/
http://java.net/projects/tda
A single thread dump is sometimes ...
0
votes
1answer
251 views
High cpu usage during JSF lifecycle phase execution
In our performance test we encountered a high cpu usage (100%) and the thread dumps indicated that most of the times the threads are either executing restore view or render response phase of the JSF ...
1
vote
2answers
548 views
Thread Dump Analyzer
Do you know some good thread dump analyzer tool? Perfect would be :
List item
free
could read few threaddumps and compare them
point out which treads took the longest, what are the classes that the ...
1
vote
2answers
165 views
Thread getting locked at “www.protocol.http.HttpURLConnection”
My threads are getting locked while calling
new URL(url).openConnection();
A part of thread dump is:
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1195)
- ...
0
votes
1answer
382 views
Java thread dump: `WAITING (on object monitor)` line not followed by `waiting on <0x1234>` line
My thread TP-Processor27 is waiting, tells me a thread dump.
Usually WAITING (on object monitor) lines are immediately followed by a waiting on <0x09c34480> or similar line. But not in the dump ...
1
vote
1answer
330 views
jstack Can't create thread dump - Thread 745: (state = BLOCKED) Error occurred during stack walking)
When we generate a thread dump for JBoss 4.2.3.GA using $JAVA_HOME/bin/jstack on Linux... we get this error:
Can't create thread dump - Thread 745: (state = BLOCKED) Error occurred during stack ...
4
votes
4answers
654 views
Analyzing thread dump of a java process
I have JEE based application running on tomcat and I am seeing that all of a sudden the application hangs after running for couple of hours.
I collected the thread dump from the application just ...
9
votes
1answer
1k views
Java thread dump: Difference between “waiting to lock” and “parking to wait for”?
In a Java thread dump, you can see locks mentioned within stack traces.
There seems to be three kinds of information:
1:
- locked <0x00002aab329f7fa0> (a java.io.BufferedInputStream)
2:
- ...
2
votes
4answers
2k views
Java 7 support for Google App Engine Java
The Google App Engine Java overview page indicates that the Java versions 5 and 6 are supported. When starting the local development server with Java 7u4 the following error bubbles up:
#
# A fatal ...
2
votes
2answers
2k views
100 threads TIMED_WAITING in tomcat, causing it to stall as total number of threads crosses 200
Recently one of our production tomcat server became unresponsive because tomcat's busy threads shot upto 200. When we took thread dump before restarting we got 100 threads in TIMED_WAITING state like ...
3
votes
2answers
240 views
Thread dump analysis (AWT-EventQueue runnable but waiting on condition)
I have a swing application that freezes after some (random) time. I have taken 5 thread snapshots every 10 seconds after it freezes and they all contain these exact same lines:
"AWT-EventQueue-0" ...
0
votes
1answer
329 views
unix script to collect the thread dump logs of a process
I am trying to generate an issue regarding HashMap.put function.I have written a test code which will run more than 100 threads.. by using jstack or kill I'am able to get the thread dump of a ...
0
votes
0answers
126 views
Weird java thread dump output
I have a thread dump of a java process (kill -3 output), and I see a weird issue - I see there are a lot of thread blocked since they are waiting to lock on an objcet, but I don't see any thread that ...
0
votes
2answers
263 views
How to programmatically find the locks held by all threads
It is easy to output a threaddump from the Java program by calling Thread.getAllStackTraces(). I sometimes used this in a JSP to easily diagnose problems. But often another important information you ...
1
vote
3answers
577 views
No threaddump generated on kill -3
Is there a possibility that kill -3 / quit PID prints nothing i.e. an empty thread dump? We heard a story from a support engineer and was wondering if some experts could validate.
This is on Java ...
1
vote
2answers
1k views
Glassfish v3 - How to Get/Analyze Thread Dump?
I'm trying to get/analyze a thread dump for my app that's running in Glassfish 3.1.1 on a Linux box. I've come across two ways to do it.
Run kill -QUIT <pid> on the command line
In the ...
2
votes
3answers
1k 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?
3
votes
3answers
682 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
1k 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 ...
0
votes
1answer
288 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 ...
8
votes
3answers
2k 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 ...
0
votes
4answers
1k 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 ...
17
votes
1answer
6k 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 ...
2
votes
1answer
147 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 ...
10
votes
4answers
7k 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 ...
4
votes
1answer
3k 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 ...
0
votes
2answers
2k 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 ...
3
votes
3answers
1k views
Is there any way to trigger a thread dump for WebLogic server as soon as the server goes into a low thread count state?
we have a WebLogic setup that has been giving us some problems.
We have a monitoring tool called HP BAC that helps us visualize the state of the servers, and we tie this tool with the Java Thread ...
1
vote
2answers
974 views
Thread/Core Dump Analysis Tool [duplicate]
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 ...
1
vote
2answers
460 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 ...
6
votes
2answers
838 views
Java Thread Dump Summarisation Tool
I sometimes have to look at thread dumps from a Tomcat server. However, this is a very slow process as my application uses thread pools with a couple of hundred threads. Most of the thread dumps I ...
5
votes
1answer
237 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 ...
7
votes
3answers
2k 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 ...
0
votes
1answer
786 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 ...
3
votes
5answers
2k 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? ...
0
votes
1answer
162 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, ...
5
votes
2answers
735 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:
...
1
vote
2answers
1k 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)
- ...
3
votes
2answers
1k 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 ...
