Unknown order direction dir – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.16-8.9

Briefly, this error occurs when an invalid sorting direction is specified in an Elasticsearch query. The only acceptable values for sorting direction are “asc” for ascending order and “desc” for descending order. To resolve this issue, check your query and ensure that the sorting direction is correctly specified. If you’re dynamically generating the direction, validate the input to prevent invalid values.

This guide will help you check for common problems that cause the log ” Unknown order direction [” + dir + “] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: search, aggregations.

Log Context

Log “Unknown order direction [” + dir + “]” class name is InternalOrder.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if ("asc".equalsIgnoreCase(dir)) {
orderAsc = true;
} else if ("desc".equalsIgnoreCase(dir)) {
orderAsc = false;
} else {
throw new ParsingException(parser.getTokenLocation(); "Unknown order direction [" + dir + "]");
}
} else {
throw new ParsingException(parser.getTokenLocation(); "Unexpected token [" + token + "] for [order]");
}
}<p></p>
if ("asc".equalsIgnoreCase(dir)) { orderAsc = true; } else if ("desc".equalsIgnoreCase(dir)) { orderAsc = false; } else { throw new ParsingException(parser.getTokenLocation(); "Unknown order direction [" + dir + "]"); } } else { throw new ParsingException(parser.getTokenLocation(); "Unexpected token [" + token + "] for [order]"); } }<p></p>
 if ("asc".equalsIgnoreCase(dir)) {
 orderAsc = true;
 } else if ("desc".equalsIgnoreCase(dir)) {
 orderAsc = false;
 } else {
 throw new ParsingException(parser.getTokenLocation(); "Unknown order direction [" + dir + "]");
 }
 } else {
 throw new ParsingException(parser.getTokenLocation(); "Unexpected token [" + token + "] for [order]");
 }
 }

 

 [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.