No results for search in kibana

hi,
I am getting no results for my search term "collectionaccount" in the field "tableId_lc" in Kibana. seems that for other docs all is working properly. not sure what am I missing:

"analysis" : {
"filter" : {
"autocomplete_filter" : {
"type" : "ngram",
"min_gram" : "3",
"max_gram" : "10"
}
},
"analyzer" : {
"autocomplete" : {
"filter" : [
"lowercase",
"autocomplete_filter"
],
"type" : "custom",
"tokenizer" : "standard"
}
}
},

field mapping:
"tableId_lc" : {
"type" : "text",
"analyzer" : "autocomplete",
"search_analyzer" : "standard"
},

I have doc with:
the following:
tableId_lc: collectionaccount

when I search the exact term "collectionaccount" (lucene) - I get no results.

any idea?

changing the max_gram to 40 seems to solve the problem.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.