Must not start with ‘_’. – How to solve this Elasticsearch error

Opster Team

July-20, Version: 1.7-8.0

Before you begin reading this guide, we recommend you try running the Elasticsearch Error Check-Up which analyzes 2 JSON files to detect many configuration errors.

Briefly, this error occurs when a query string in Elasticsearch starts with a certain character or word. Elasticsearch may reject certain characters or words at the beginning of a query string for security reasons. To resolve the issue, remove the offending character or word from the beginning of the query string.

To easily locate the root cause and resolve this issue try AutoOps for Elasticsearch & OpenSearch. It diagnoses problems by analyzing hundreds of metrics collected by a lightweight agent and offers guidance for resolving them.

Take a self-guided product tour to see for yourself (no registration required).

This guide will help you check for common problems that cause the log ” must not start with ‘_’. ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: metadata and cluster.

Log Context

Log “must not start with ‘_’.”classname  is IndexNameExpressionResolver.java We extracted the following from Elasticsearch source code for those seeking an in-depth context :

// Expressions can not start with an underscore. This is reserved for APIs. If the check gets here; the API
 // does not exist and the path is interpreted as an expression. If the expression begins with an underscore;
 // throw a specific error that is different from the [[IndexNotFoundException]]; which is typically thrown
 // if the expression can't be found.
 if (expression.charAt(0) == '_') {
 throw new InvalidIndexNameException(expression; "must not start with '_'.");
 }
 } 
 private static boolean aliasOrIndexExists(Context context; IndicesOptions options; Metadata metadata; String expression) {
 IndexAbstraction indexAbstraction = metadata.getIndicesLookup().get(expression);

 

Watch product tour

Try AutoOps to find & fix Elasticsearch problems

Analyze Your Cluster
Skip to content