Tem como eu realizar o comando abaixo (de mapping e settings) em um index existente?
{
"mappings": {
"conhecimento": {
"_all": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
},
"properties": {
"CORPO_HTML": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
},
"CORPO_PERGUNTA": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
},
"CORPO_RESPOSTA": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
},
"ID": {
"type": "long"
},
"TAGS": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
},
"TITULO_PERGUNTA": {
"type": "string",
"index": "analyzed",
"analyzer": "portuguese"
}
}
}
},
"settings": {
"index": {
"number_of_shards": "3",
"number_of_replicas": "0"
}
}
}