Elastic Search Hyphen issue with term filter Elastic Search Hyphen issue with term filter elasticsearch elasticsearch

Elastic Search Hyphen issue with term filter


I would guess that your field is analyzed, which is default setting for string fields in elasticsearch. As a result, when it indexed it's not indexed as one term "update-time" but instead as 2 terms: "update" and "time". That's why your term search cannot find this term. If your field will always contain values that will have to be matched completely as is, it would be the best to define such field in mapping as not analyzed. You can do it by recreating the index with new mapping:

curl -XPUT http://localhost:9200/your-index -d '{    "mappings" : {        "your-type" : {            "properties" : {                "field" : { "type": "string", "index" : "not_analyzed" }            }        }    }}'curl -XPUT  http://localhost:9200/your-index/your-type/1 -d '{    "field" : "update-time"}'curl -XPOST http://localhost:9200/your-index/your-type/_search -d'{    "filter": {        "term": {                "field": "update-time"        }    }}'

Alternatively, if you want some flexibility in finding records based on this field, you can keep this field analyzed and use text queries instead:

curl -XPOST http://localhost:9200/your-index/your-type/_search -d'{    "query": {        "text": {                "field": "update-time"        }    }}'

Please, keep in mind that if your field is analyzed then this record will be found by searching for just word "update" or word "time" as well.


The accepted answer didn't work for me with elastic 6.1. I solved it using the "keyword" field that elastic provides by default on string fields.

{    "filter": {            "term": {                    "field.keyword": "update-time"                }        }}


Based on the answer by @imotov If you're using spring-data-elasticsearch then all you need to do is mark your field as:

@Field(type = FieldType.String, index = FieldIndex.not_analyzed)

instead of

@Field(type = FieldType.String)

The problem is you need to drop the index though and re-instantiate it with new mappings.