No mapping found for field in order to sort on in ElasticSearch

SortingMappingElasticsearch

Sorting Problem Overview


Elasticsearch throws a SearchParseException while parsing query if there are some documents found not containing field used in sort criteria.

> SearchParseException: Parse Failure [No mapping found for [price] in order to sort on]

How can I successfully search these documents, even if some are missing the price field?

Sorting Solutions


Solution 1 - Sorting

After digging more, I found the solution as given below. ignore_unmapped should be explicitly set to true in the sort clause.

"sort" : [
       { "rating": {"order" : "desc" , "ignore_unmapped" : true} },
       { "price": {"order" : "asc" , "missing" : "_last" , "ignore_unmapped" : true} }
]

For further information have a look at the Elasticsearch references for:

Solution 2 - Sorting

> For those looking for an example of both ignore_unmapped and > unmapped_type please see my response here.

Note that "ignore_unmapped" is now deprecated in favor of "unmapped_type". This was done as part of #7039

From documentation: Before 1.4.0 there was the ignore_unmapped boolean parameter, which was not enough information to decide on the sort values to emit, and didn’t work for cross-index search. It is still supported but users are encouraged to migrate to the new unmapped_type instead.

By default, the search request will fail if there is no mapping associated with a field. The unmapped_type option allows to ignore fields that have no mapping and not sort by them. The value of this parameter is used to determine what sort values to emit. Here is an example of how it can be used:

{
    "sort" : [
        { "price" : {"unmapped_type" : "long"} },
    ],
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}

If any of the indices that are queried doesn’t have a mapping for price then Elasticsearch will handle it as if there was a mapping of type long, with all documents in this index having no value for this field.

Solution 3 - Sorting

Apparently ElasticSearch won't sort on null values. I was assuming it would treat null as being at the start or end (as with SQL ordering) but I believe it also triggers this error.

So if you see this error, you may need to ensure the sort attribute has a default value when it's sent to ElasticSearch.

I had this error with Rails+ElasticSearch+Tire because the sort column didn't have a default value, so was being sent to ES as null.

This issue indicates null values are handling, but it wasn't my experience. It's something worth trying anyway.

Solution 4 - Sorting

if you are using es 6.7

try this one

sort : ["title.keyword:desc"]

Solution 5 - Sorting

I experienced the same problem (sorta; would get some errors, but some results), but in my case my search was being issued at the root (no index specified), and the errors I was getting were because the search/order was also looking to a Kibana index.

Stupid error, but maybe this'll help someone else who ends up here.

Solution 6 - Sorting

Elasticsearch 6.4

simply specify the index and that's it in Kibana

BEFORE

GET /_search
{
 
  "query": {
    "exists": {
      "field": "document_id"
    }
  },
  "sort": [
    {
      "document_id": { "order": "asc"  },
      "created_at":  { "order": "desc" }
    }
  ]
}

AFTER

GET /document-index/contact/_search  (here)
{
 
  "query": {
    "exists": {
      "field": "document_id"
    }
  },
  "sort": [
    {
      "document_id": { "order": "asc"  },
      "created_at":  { "order": "desc" }
    }
  ]
}

Solution 7 - Sorting

Let me try to help in the case that the original answer doesn't work for you. For ES 6.x try the code below, ignore_unmapped is deprecated.

"sort" : [
       { "rating": {"order" : "desc" , "unmapped_type" : "long"} },
       { "price": {"order" : "asc" , "missing" : "_last" , "unmapped_type" : "long"} }
]

More about sorting you can find on:

https://www.elastic.co/guide/en/elasticsearch/reference/6.8/search-request-sort.html

Solution 8 - Sorting

You could also use script which gives you some flexibility:

"sort" : {
    "_script" : {
        "type" : "number",
        "script" : {
            "lang": "painless",
            "source": "return !doc['price'].empty ? doc['price'].value : 0"
        },
        "order" : "desc"
    }
}

Solution 9 - Sorting

When we use below code, where added_on is date, what happens !! attribute text is analyzed, meaning it is broken up into distinct words when stored, and allows for free-text searches on one or more words in the field

so there is "text" and "keyword" associated with fields, so if we need to use aggregation in the query, we need the field value in general the keyword.

BEFORE

"_source":{....}
"query" : {...}
"sort": [
{
  "added_on": {
    "order": "desc"
  }
}
]

AFTER
"_source":{....}
"query" : {...}
"sort": [
{
  "added_on.keyword": {
    "order": "desc"
  }
}
]

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionYaduView Question on Stackoverflow
Solution 1 - SortingYaduView Answer on Stackoverflow
Solution 2 - SortingNavneet KumarView Answer on Stackoverflow
Solution 3 - SortingmahemoffView Answer on Stackoverflow
Solution 4 - SortingKhalid SkiodView Answer on Stackoverflow
Solution 5 - SortingJames BoutcherView Answer on Stackoverflow
Solution 6 - SortingBrian SanchezView Answer on Stackoverflow
Solution 7 - SortingIvan MarjanovicView Answer on Stackoverflow
Solution 8 - SortingRafal EndenView Answer on Stackoverflow
Solution 9 - SortingAbhishekView Answer on Stackoverflow