PUT提交时报错
"type": "illegal_argument_exception",
"reason": "Rejecting mapping update to [people] as the final mapping would have more than 1 type: [woman, man]"
"type": "illegal_argument_exception",
"reason": "Rejecting mapping update to [people] as the final mapping would have more than 1 type: [woman, man]"
2018-03-31
请问解决了吗?我也报这个错误
book/novel/_mappings
POST方式
{
"novel": {
"properties": {
"title": {
"type": "text"
}
}
}
}
错误信息
{
"error": {},
{}
"type": "illegal_argument_exception",
"reason": "Rejecting mapping update to [book] as the final mapping would have more than 1 type: [novel_mappings, novel]"
"root_cause": [],
"type": "illegal_argument_exception",
"reason": "Rejecting mapping update to [book] as the final mapping would have more than 1 type: [novel_mappings, novel]"
"status": 400
}
举报