Elastic Search does not currently (as of 0.18.4) support field collapsing. Is there a good way to simulate this, as to avoid N search queries?

link|improve this question

64% accept rate
feedback

2 Answers

Probably not the answer you're looking for but: As far as I know, and according to this ticket, the only real workaround is to select a larger result set and group on the client side.

link|improve this answer
bad idea ... as you don't know what are the actual count of rows – ajreal Dec 5 '11 at 16:33
not really a bad idea. Just try it and see that its fast even for even >1000 docs (if not too big docs) – Karussell Dec 9 '11 at 9:55
feedback

Depending on what your use case is you might find parent/child support or nested types useful instead.

You can find more about parent/child support here: https://github.com/elasticsearch/elasticsearch/issues/553 (and then in corresponding query/filter doc pages)

As for nested types, check here: http://www.elasticsearch.org/guide/reference/mapping/nested-type.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.