Я пытаюсь обновить значение ignore_above
в моих индексах.Я использую PUT для /_mappings/my_type
(тестер) с таким телом:
{
"properties": {
"message.keyword": {
"type": "keyword",
"ignore_above": 20
}
}
}
Возвращает: "illegal_argument_exception"
, "reason": "mapper [message] of different type, current_type [text], merged_type [ObjectMapper]"
Любые идеи о том, как решить эту проблемубыло бы отлично.
Вот мое отображение:
"mappings": {
"tester": {
"properties": {
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},