I've been following a tuturial here:
http://blog.qbox.io/multi-field-partial-word-autocomplete-in-elasticsearch-using-ngrams

but when I query for results I only get matches if i use the entire word. 
Partial word searches always give zero results. How do debug this ? 

A query for 'aragon' produces matches but 'arango' produces zero 
matches...? I'm using 'sense' to submit my queries

POST /tso/geo/_search
{
   "size": 10,
   "query": {
      "match": {
         "_all": {
            "query": "arago",
            "operator": "and"
         }
      }
   }
}

result. 
{
   "took": 1,
   "timed_out": false,
   "_shards": {
      "total": 5,
      "successful": 5,
      "failed": 0
   },
   "hits": {
      "total": 0,
      "max_score": null,
      "hits": []
   }
}

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/266c1334-0a39-4ce0-b962-8080fa841f98%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to