java process is using all available CPU cores, and I have taken a number of thread dumps at 15 sec intervals.
The thread dumps repeatedly show 1 blocked thread "MySQL Cancellation Timer"
Any ideas what is causing this and what i can do to fix/prevent?
We are running JIRA 6.3.7
A "BLOCKED" thread is one that has suspended execution as it waits for some other thread to release an object monitor. It is, by definition, not using the CPU. You should instead be looking for threads that are in the "RUNNING" state.
100% CPU is more likely to be caused by GC thrashing than anything else. Turning on GC logging may help you confirm this (multiple "Full GC" reports back-to-back usually indicate a problem, here). An example of what might cause this is something trying to read all of the JIRA issues into memory or something similarly evil.
There really isn't enough information here to help any further with this, but our support team can usually help with tracking down the culprit when something like this is happening.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.