从 6.2 开始不再支持多映射类型。我必须将现有的多类型索引迁移到 _doc 类型的单一映射中。但是我不确定如何在这个单一映射中映射当前子属性。
"mappings": {
"_doc": {
"properties": {
"join_field": {
"type": "join",
"relations": {
"question": "answer"
}
},
"text": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
现在我希望在答案类型和问题类型中有更多字段。但我不知道如何做到这一点。