Wildcard queries cannot be executed when – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.7-7.15

Briefly, this error occurs when a wildcard query is attempted on a field that is not analyzed. Elasticsearch wildcard queries are not allowed on non-analyzed fields because they are not tokenized, hence, they cannot be searched using wildcard patterns. To resolve this issue, you can either change the field to be analyzed or use a different type of query that does not require tokenization, such as a term or match query. Alternatively, you can use the keyword field which is automatically created for text fields if you still want to perform a wildcard search.

This guide will help you check for common problems that cause the log ” [wildcard] queries cannot be executed when ‘ ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: index.

Log Context

Log “[wildcard] queries cannot be executed when ‘” class name is StringFieldType.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 boolean shouldNormalize;
 SearchExecutionContext context
 ) {
 failIfNotIndexed();
 if (context.allowExpensiveQueries() == false) {
 throw new ElasticsearchException("[wildcard] queries cannot be executed when '" +
 ALLOW_EXPENSIVE_QUERIES.getKey() + "' is set to false.");
 }  Term term;
 if (getTextSearchInfo().getSearchAnalyzer() != null && shouldNormalize) {

 

 [ratemypost]

Opster
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.