DELETE itunes-suggest PUT /itunes-suggest { "settings": { "analysis": { "filter": { "french_stop": { "type": "stop", "stopwords": "_french_" }, "english_stop": { "type": "stop", "stopwords": "_english_" } }, "analyzer": { "names": { "tokenizer": "standard", "filter": [ "lowercase", "asciifolding", "french_stop", "english_stop" ] } } } }, "mappings": { "properties": { "artist_suggest": { "type": "completion" }, "artist": { "type": "keyword" }, "album_suggest": { "type": "completion" }, "album": { "type": "keyword" } } } } // Problem with word EP, SP GET itunes-suggest/_analyze { "analyzer": "names", "text": "the servent" } POST itunes-suggest/_search { "_source" : "artist", "suggest": { "name-suggest": { "prefix": "sou", "completion": { "field": "artist_suggest" } } } } POST itunes-suggest/_search { "_source" : "album", "suggest": { "name-suggest": { "prefix": "new", "completion": { "field": "album_suggest", "size": 20 } } } }