Change Analyzer of suggest after indexing

Is there any way I can change the “analyzer” and “search_analyliser” in my suggest field? At the moment it’s set to “keyword” but I want to change it to “standard” ? Can I just close the index and change it and re-open it without losing data or will I have to re-index all the data?

If I can change it, then how would the query look like?

My existing mapping look like this.

{
"mappings": {
"item" : {
"properties" : {
"suggest" : {
"type" : "completion",
"analyzer" : "keyword",
"search_analyzer" : "keyword"
},
"part" : {
"type": "text"
}
}
}
}
}

Hi @manukaleel,

It is not possible to change your mapping. You will have to reindex your data.
You can create the new index with the correct mapping and use the reindex API to help you.

https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html

Hope it helps.

Cheers,
LG

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