While you're experiencing the server unresponsiveness or abnormal slowness, collect a thread dump in a new terminal window (since your original terminal window is locked up or very slow).
There are two ways to do this:
- Run
stardog-admin server metrics --threads "jvm.threads"
- Use
jstack
.- In your new terminal window, run
ps aux | grep stardog
to find Stardog's PID (process ID). - Collect the thread dump with
jstack -l <PID> > thread-dump.txt
, replacing "<PID>" with the process ID you found in the previous step.
- In your new terminal window, run
Once you've collected your thread dump, create a support ticket and attach the thread dump to it.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article