Is it possible to query across multiple Indices with regard to relations? I know I can search across multiple Indices, but then I get two disjoint result sets.
For example I have two indices "customer" and "address" that are related by an address-key in the customer index. I want to get all customers named "John" that live in "New York" in one query. Can ES "join" the two result sets from address and customer and give me all Johns from NY?
I get the Feeling ES isn't made for that rdbms-style joining of Indices. Unfortunately flattening the indices into one index isn't an Option. Querying multiple times is also not an option.