Cannot install system call filter because JNA is not available – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-8.9

Briefly, this error occurs when Elasticsearch is unable to install a system call filter due to the unavailability of Java Native Access (JNA). This might be because JNA is not installed or not properly configured. To resolve this issue, you can either install JNA if it’s not already installed, or ensure that Elasticsearch has the necessary permissions to access JNA. Alternatively, you can disable the system call filter by setting the ‘bootstrap.system_call_filter’ to false in the Elasticsearch configuration file. However, this might expose your system to additional security risks.

This guide will help you check for common problems that cause the log ” cannot install system call filter because JNA is not available ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: filter, bootstrap.

Log Context

Log “cannot install system call filter because JNA is not available” classname is Natives.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        return JNANatives.LOCAL_MLOCKALL;
    }

    static void tryInstallSystemCallFilter(Path tmpFile) {
        if (JNA_AVAILABLE == false) {
            logger.warn("cannot install system call filter because JNA is not available");
            return;
        }
        JNANatives.tryInstallSystemCallFilter(tmpFile);
    }

 

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?