Thread Dump Collection And Inspection

Last modified 07 Sep 2022 03:49 +02:00
Since 4.0
This functionality is available since version 4.0.

Sometimes a task gets stuck, presenting as being in STALLED state. Often the cause lies in a connector not responding in a timely manner (or never). The best way how to diagnose these situations is to take and inspect a thread dump. However, this usually requires an access to the server console, which is not always available.

Therefore in 4.0 midPoint has a new (a bit experimental) functionality: showing and recording thread dumps.

Showing thread dumps from GUI

The functionality is available from the Internals configuration menu item:

image2019 2 11 11 30 36

You can either show all threads in JVM:

image2019 2 11 11 31 55

Or show only threads corresponding to the tasks currently executing on this node (this is probably the most useful option):

image2019 2 11 11 33 6

Or you can request that thread dumps of currently executing tasks are attached to those tasks in the form of <diagnosticInformation> property. You can inspect these elements by exporting the task repository objects or showing them via GUI.

image2019 2 11 11 34 26
image2019 2 11 11 35 9

You can test this feature e.g. using the following samples containing long-running tasks:

Getting thread dumps via REST

Sometimes the system might be unreachable via GUI e.g. because of resource shortage. If at least the REST interface is working you can get thread dump like this:

curl --user administrator:5ecr3t http://localhost:8080/midpoint/ws/rest/threads -v
curl --user administrator:5ecr3t http://localhost:8080/midpoint/ws/rest/tasks/threads -v
curl --user administrator:5ecr3t http://localhost:8080/midpoint/ws/rest/tasks/00000002-0000-0000-0000-123450000002/threads -v

The first command retrieves all the threads, the second one gives threads related to all running tasks (on this node), and the third one gives threads related to a specific running task (again, it must be running on the node receiving the REST request).

Getting thread dumps automatically

Current midPoint setting is that as soon as it detects that the task is stalled, it records the threads dump into the task’s <diagnosticInformation> property. This is repeated each hour until the task starts making progress or is stopped.

The current (hard-wired) setting is that the last 5 dumps are kept for each task.

Was this page helpful?
YES NO
Thanks for your feedback