Increase RLIMIT MEMLOCK soft limit hard limit – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-6.8

Briefly, this error occurs when Elasticsearch is unable to allocate enough memory due to the operating system’s memory limit (RLIMIT_MEMLOCK). This limit prevents Elasticsearch from locking the memory, which can lead to swapping and degrade performance. To resolve this issue, you can increase the RLIMIT_MEMLOCK limit in the operating system settings. Alternatively, you can disable memory swapping in Elasticsearch settings or configure Elasticsearch to use less memory. However, these solutions may impact the performance of other applications or Elasticsearch itself, so they should be used with caution.

This guide will help you check for common problems that cause the log ” Increase RLIMIT_MEMLOCK; soft limit: {}; hard limit: {} ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: bootstrap.

Log Context

Log “Increase RLIMIT_MEMLOCK; soft limit: {}; hard limit: {}” classname is JNANatives.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

         // mlockall failed for some reason
        logger.warn("Unable to lock JVM Memory: error={}; reason={}"; errno ; errMsg);
        logger.warn("This can result in part of the JVM being swapped out.");
        if (errno == JNACLibrary.ENOMEM) {
            if (rlimitSuccess) {
                logger.warn("Increase RLIMIT_MEMLOCK; soft limit: {}; hard limit: {}"; rlimitToString(softLimit);
                    rlimitToString(hardLimit));
                if (Constants.LINUX) {
                    // give specific instructions for the linux case to make it easy
                    String user = System.getProperty("user.name");
                    logger.warn("These can be adjusted by modifying /etc/security/limits.conf; for example: \n" +




 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?