{
"query":{
"bool": {
"must": {
"bool": {
"should": [
{
"range": {
"createdOn": {
"gte": "1481049000000",
"lte": "1512671399000"
}
}
}
],
"must_not": [
{
"match": {
"deleteFlag": "1"
}
}
]
}
},
"filter": {
"type": {
"value": "com.uralian.cgiats.model.Candidate"
}
}
}
},
"_source":[
"*"
],
"sort":[
{
"title": {
"order": "desc",
"missing": "_last"
}
}
]
}
Error
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "[field_sort] unknown field [title], parser not found"
}
],
"type": "illegal_argument_exception",
"reason": "[field_sort] unknown field [title], parser not found"
},
"status": 400
}
we are getting response in Elasticsearch 2.4 when we moved version of jar to 5.6 we see above error reponse.
Thanks