Re: Multiple rollups/facets in one streaming aggregation?

2017-07-30 Thread Peter Shmukler
y on base of Solr 7. I implemented class CMSFacetStream extends TupleStream implements Expressible and class CMSMetric extends Metric. My current issues: - I return results tuples as soon as I achieve bucketSizeLimit, but I don’t see response of partial result. - How can I return Json object from Metric class? -- View this message in context: http://lucene.472066.n3.nabble.com/Multiple-rollups-facets-in-one-streaming-aggregation-tp4291952p4348260.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple rollups/facets in one streaming aggregation?

2016-09-01 Thread Alessandro Benedetti
cebook,... ] > } > > Expected result : > watsapp: 2 > facebook : 2 > > I have 2 TB data . I wanted to execute in aggmode=map_reduce. Any > suggestion? > > > > > > -- > View this message in context: http://lucene.472066.n3. > nabble.com/Multip

Re: Multiple rollups/facets in one streaming aggregation?

2016-09-01 Thread subramani.new
? -- View this message in context: http://lucene.472066.n3.nabble.com/Multiple-rollups-facets-in-one-streaming-aggregation-tp4291952p4294270.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple rollups/facets in one streaming aggregation?

2016-08-17 Thread Radu Gheorghe
Thanks a lot, Joel, for your very fast and informative reply! We'll chew on this and add a Jira if we're going on this route. -- Performance Monitoring * Log Analytics * Search Analytics Solr & Elasticsearch Support * http://sematext.com/ On Tue, Aug 16, 2016 at 8:29 PM, Joel Bernstein

Re: Multiple rollups/facets in one streaming aggregation?

2016-08-16 Thread Joel Bernstein
For the initial implementation we could skip the merge piece if that helps get things done faster. In this scenario the metrics could be gathered after some parallel operation, then there would be no need for a merge. Sample syntax: metrics(parallel(join()) Joel Bernstein

Re: Multiple rollups/facets in one streaming aggregation?

2016-08-16 Thread Joel Bernstein
The concept of a MetricStream was in the early designs but hasn't yet been implemented. Now might be a good time to work on the implementation. The MetricStream wraps a stream and gathers metrics in memory, continuing to emit the tuples from the underlying stream. This allows multiple

Multiple rollups/facets in one streaming aggregation?

2016-08-16 Thread Radu Gheorghe
Hello Solr users :) Right now it seems that if I want to rollup on two different fields with streaming expressions, I would need to do two separate requests. This is too slow for our use-case, when we need to do joins before sorting and rolling up (because we'd have to re-do the joins). Since in