0

我正在使用弹性搜索。我需要在嵌套文档中使用自引用。

Example: Employee will have manager(Himself an employee). 

领域:

employee_id - long, 
employee_name - string 
manager(document of another employee)

我可以为员工 ID、员工姓名进行映射。我正在努力为经理字段进行映射。我是否需要在嵌套中映射完整的字段集(emplyee_id、employee_name)?

提前致谢。

4

1 回答 1

0

使用嵌套文档,如果要存储多个级别,则必须为经理和经理的经理以及经理的经理的经理重复整个映射。将其表示为父子关系可能会更好。

于 2013-09-23T18:37:24.950 回答