PUT /thegame/weapons/_mapping?ignore_conflicts=true
{
"mappings": {
"weapons": {
"properties": {
"name": {
"type": "string",
"analyzer": "full_name"
},
"description": {
"type": "string"
},
"category": {
"type": "string"
}
}
}
},
"settings": {
"analysis": {
"analyzer": {
"full_name": {
"filter": [
"standard",
"lowercase",
"asciifolding"
],
"type": "custom",
"tokenizer": "standard"
}
}
}
}
}
I have to update mapping in my index but it shows parsing exception.How to I update mapping in already existing index
Can you include the entire output of the exception response that Elasticsearch returns?
It should have more information about which part(s) are the unsupported parameters.