Simulating field collapsing/grouping by field in E

2019-07-07 02:44发布

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?

2条回答
啃猪蹄的小仙女
2楼-- · 2019-07-07 03:43

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.

查看更多
再贱就再见
3楼-- · 2019-07-07 03:46

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

查看更多
登录 后发表回答