I don't see any difference between term and match in filter:
POST /admin/_search
{
"query": {
"bool": {
"filter": [
{
"term": {
"partnumber": "j1knd"
}
}
]
}
}
}
And the result contains not exactly matched partnumbers too, e.g.: "52527.J1KND-H"
Why?
Term queries are not analyzed and mean whatever you send will be used as it is to match the tokens in the inverted index, while match queries are analyzed and the same analyzer applied on the fields, which is used at index time and accordingly matches the document.
Read more about term query and match query. As mentioned in the match query:
You can also use the analyze API to see the tokens generated for a particular field.
Tokens generated by
standard analyzer
on52527.J1KND-H
text.Above explain to you why you are getting the not exactly matched
partnumbers
too, e.g.: "52527.J1KND-H", I would take your example and how you can make it work.Index mapping
Index docs
Search query to return only the exact match
Result