Вопрос такой. Есть существующий индекс с таким маппингом:
{
"sentiment": {
"mappings": {
"test-type": {
"properties": {
"author": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"date": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"polarity": {
"type": "float"
},
"sentiment": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"subjectivity": {
"type": "float"
}
}
}
}
}
}
Проблема в том, что тут date с типом text. A хотелось бы иметь timestamp. Как можно это сделать для уже существующего индекса?
Спасибо.