我们在Elasticsearch5.6中有类型为Student的现有文档。
在制作完成一段时间后,我们想要添加一个名为school的新功能。 对我们来说最好的解决方案是将学校类型添加到ES,并在两者之间设置父子关系(父母:学校,孩子:学生)。
在尝试更新索引的映射时,我们收到了以下消息:
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"The _parent field's type option can't be changed: [null]->[schools]"}],"type":"illegal_argument_exception","reason":"The _parent field's type option can't be changed: [null]->[schools]"},"status":400}
有谁知道我们如何为现有文件添加新关系?
感谢。