Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Resolved
-
None
-
None
Description
This ticket will add the drill Streaming Expression. The drill Streaming Expression is a wrapper around the functionality that is described in SOLR-14470. The idea is for drill to contact the /export handler on one replica in each shard of a collection and pass four parameters:
- q: query
- fl: field list
- sort: sort spec
- expr: The Streaming Expression sent to the /export handler to be executed.
The export handler will pass the result set through the streaming expression performing an aggregation on the sorted result set and return the aggregated tuples. The drill expression will simply maintain the sort order of the tuples and emit them so that a wrapper expression can perform operations on the sorted aggregate tuples.
Sample syntax:
drill(collection1, q="*:*", fl="a,b,c", sort="a desc, b desc", rollup(input(), over="a,b", sum(c)))
In order to finish the aggregation other expressions can be used:
rollup( select( drill(collection1, q="*:*", fl="a,b,c", sort="a desc, b desc", rollup(input(), over="a,b", sum(c))), a, b, sum(c) as sums), over="a, b", sum(sums))
This provides fast aggregation over fields with infinite cardinality by pushing down the first level of aggregation into the /export handler.
Attachments
Attachments
Issue Links
- relates to
-
SOLR-14470 Add streaming expressions to /export handler
- Closed