I put the mapping for a field question_title, with following:
PUT mac/_settings
{
"mappings": {
"ask_expert_published_prod": {
"properties": {
"question_title": {
"type": "string",
"analyzer": "english"
}
}
}
}
}
But, when i see the mapping for the type through:
GET myindex/mytype/_mapping
it still shows only type='string' for the field, as following:
"question_title": {
"type": "string"
},
Was the mapping properly updated on the field. If not, how can I do it.