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"
}
}
}
}
}