我正在使用弹性搜索。我需要在嵌套文档中使用自引用。
Example: Employee will have manager(Himself an employee).
领域:
employee_id - long,
employee_name - string
manager(document of another employee)
我可以为员工 ID、员工姓名进行映射。我正在努力为经理字段进行映射。我是否需要在嵌套中映射完整的字段集(emplyee_id、employee_name)?
提前致谢。