How to do a join in Elasticsearch -- or at the Lucene level How to do a join in Elasticsearch -- or at the Lucene level elasticsearch elasticsearch

How to do a join in Elasticsearch -- or at the Lucene level


As already mentioned the way to go is parent/child. The point is that nested documents are extremely performant but in order for them to be updated you need to re-submit the whole structure (parent + nested documents). Although the internal implementation of nested documents consists of separate lucene documents, those nested doc are not visible nor directly accessible. In fact when using nested documents you then need to use proper queries to access them (nested query, nested filter, nested facet etc.).

On the other hand parent/child allows you to have separate documents that refer to each other, which can be updated independently. It has a cost in terms of performance and memory used but it is way more flexible than nested documents.

As mentioned in this article though, the fact that elasticsearch helps you managing relations doesn't mean that you must use those features. In a lot of complex usecases it is just better to have some custom logic on the application layer that handles with relations. In facet there are limitations with parent/child too: for instance you can never get back both parent and children at the same time, as opposed to nested documents that doesn't allow to get back only matching children (for now).


Take a look at my answer for: In Elasticsearch, can multiple top-level documents share a single nested document?

This discusses the use of _parent mapping as a way to avoid the issue with needing to update every Item when a Person is updated.