Jira server throws OutOfMemoryError: unable to create new native thread
Symptoms
The JIRA application occasionally crashes and throws an OutOfMemoryError
as below in the catalina.out
, stdout
or atlassian-jira.log
:
Exception in thread "http-bio-8506-exec-106" java.lang.OutOfMemoryError: unable to create new native thread
at java.lang.Thread.start0(Native Method)
at java.lang.Thread.start(Thread.java:691)
at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:943)
at java.util.concurrent.ThreadPoolExecutor.processWorkerExit(ThreadPoolExecutor.java:992)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)
Verification
The above error message will be present in the logs. This can be different error messages associated with an OutOfMemoryError
, this one can be identified by the "unable to create new native thread" error message. We have different KBs for others as below:
- Jira server crashes with OutofMemory Java heap space error
- GC overhead limit exceeded error crashes Jira server
- (Archived) JIRA applications crash due to OutOfMemoryError PermGen space error
- OutOfMemoryError: Metaspace errors with Java 8+ in Jira server
Cause
To provide concurrency (the ability to do multiple things at once), Java will spawn operating system threads and use them to perform tasks. There can be hard-limits on the number of threads created by the operating system, so if the application is requesting more threads that the OS is willing to provide, the above error will be thrown. This occurs in the following way:
- A new Java thread is requested by JIRA applications. This can be by anything.
- JVM native code proxies the request to create a new native thread to the OS.
- The operating system attempts to create a new native thread. As it's a thread, it requires memory to be allocated to it.
- The operating system refuses the native memory allocation.
- The
java.lang.OutOfMemoryError: unable to create new native thread
error is thrown.
This can also happen if the operating system has no native memory left to allocate threads (say the 32-bit Java process space has been reached, or the OS virtual memory is fully depleted), or the maximum number of open files has been reached.
Another possible cause could be the parameter DefaultTasksMax has been set on system level, as it will limit the amount of possible threads.
In certain cases on Solaris it appears that this can also cause the Java application to completely crash and generate a core dump.
Solution - If you're running Jira with the start up scripts:
Edit the
$JIRA_INSTALL/bin/setenv.sh
file and add the below to the top of the file:ulimit -u 16384 ulimit -n 16384
These values may be different depending upon the operating system used, consult with your System Administrator / hosting provider about the most appropriate limits to set.
You can check the current
DefaultTaskMax
setting by runningsystemctl show --property DefaultTasksMax
- Restart JIRA.
- The changes can be verified by running
/proc/<pid>/limits
where <pid> is the application process ID.
It's recommended to set this value permanently as in the resolution.
Solution - If you're running Jira as a service:
These commands and steps may change based on *nix systems. Please reach out to your system administrator to verify and run these commands
If you're running Jira as a systemd service
Stop the Jira Service
Increase the LimitNOFILE value in the service definition file
Reload the system daemon
systemctl daemon-reload
- Start the Jira Service
Solution - Permanent
These commands and steps may change based on *nix systems. Please reach out to your system administrator to verify and run these commands
Setting the maximum running user processes and number of opened files permanently is recommended. These can be set in Debian / Ubuntu in limits.conf by adding the below:
jira soft nofile 16384
jira hard nofile 32768
jira soft nproc 16384
jira hard nproc 32768
Replace jira
with the user that runs JIRA.
If your DefaultTasksMax value is not 65535
, then uncomment the line in /etc/systemd/system.conf
and set the value to 65535
.