Questions tagged [elasticsearch-suggester]
6 questions
3
votes
1 answer
Elasticsearch completion suggester issue
Issue - completion suggester with custom keyword lowercase analyzer not working as expected. We can reproduce the issue with following steps.
Not able to understand whats causing issue here. However, if we search for "PRAXIS CONSULTING AND…

Mahesh Hegde
- 31
- 2
2
votes
0 answers
elasticsearch completion suggester returns only one suggestion when more than one matches
I created index definition with mapping:
PUT /test
{
"mappings": {
"properties" : {
"suggest" : {
"type" : "completion"
}
}
}
}
and put some data into
PUT test/_doc/1?refresh
{
"suggest" : {
"input":…

Wojciech Wirzbicki
- 3,887
- 6
- 36
- 59
1
vote
0 answers
How can I receive completion suggestions with slop?
I'm trying to search values across multiple fields with certain slop value. For example, I have two text fields with completion suggestion:
######################################
# Prefix completion example
######################################
PUT…

darth jemico
- 605
- 2
- 9
- 18
0
votes
0 answers
How the Elasticsearch Suggester run when combining with query?
I’m pretty new to Elasticsearch and planning to use the phrase suggester on my project. As mentioned in the official document the default suggest mode is “missing” means the suggestion would be generated if it cannot find the same phrase on the…

carryall
- 482
- 3
- 10
- 21
0
votes
0 answers
Find next most relevant term in elasticsearch
All the documents in my index have a field called 'name' which is used for querying by typed terms. I need the search to recommend the most relevant 'second word' for the customer to type when they enter the first word. I tried finding the products…
0
votes
1 answer
How can I put inside a curator project a suggester field (ElasticSearch)
My question is simple, I only want to know how can I add a field "suggester" correctly inside a curator project, because the next configuration not adds the field:
5:
action: create_index
description: "Create new index for recipes"
options:
name:…