Health Check: JVM Code Cache
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the server and data center platforms.
About the health check
This check verifies that you’re using the recommended JVM (Java Virtual Machine) configuration for code cache memory.
The JVM generates native code and stores it in a memory area called the Code cache.
Insufficient code cache memory can cause the JVM to disable its just-in-time (JIT) compilers, which can have a significant impact on Jira’s performance.
This code cache is primarily controlled by the ReservedCodeCacheSize
property. Starting from Jira 7.13, this property is set to 512 MB by default in the setenv.sh
/ .bat
file. If you have a large Jira instance, you may still need to increase the size.
This health check is only shown if you use Java 1.8 or above.
Understanding the results
Icon | Result | What it means |
---|---|---|
Pass | Your JVM has enough memory available for the code cache and compilers to run properly. | You're using the recommended configuration. There's currently sufficient memory available for the JVM’s code cache and C1/C2 compilers to run correctly. |
Your JVM is approaching the limit of memory allocated to code caching. | We recommend increasing the maximum size of the code cache to avoid performance issues with Jira. | |
Your JVM code cache memory is below the recommended limit. | We recommend increasing the maximum size of the code cache to avoid performance issues with Jira. | |
Fail – critical | Your JVM doesn’t have enough free space allocated to code caching. This could be causing performance issues with Jira. | The JVM’s code cache has breached its limits and the JVM is very likely to have disabled its C1/C2 compilers. We recommend increasing the |
Resolution
If you’ve reached the limit of the code cache, we recommend increasing the ReservedCodeCacheSize
property to 512 MB.
To do this, add the following arguments to the Java startup options by following the instructions in Setting Properties and Options on Startup:
-XX:ReservedCodeCacheSize=512m
Restart Jira for the new settings to take effect.
On larger Jira instances, you may need to increase the maximum code cache size above 512 MB. Learn more about sizing for Jira Server and Data Center.