Package org.elasticsearch.search.aggregations

Examples of org.elasticsearch.search.aggregations.FilteringBucketCollector


            public void gatherAnalysis(BucketAnalysisCollector results, long bucketOrdinal) {
                deferred.gatherAnalysis(results, bucketOrdinal);
            }
        };

        filteredCollector = new FilteringBucketCollector(survivingBucketOrds, subs, context.bigArrays());
        try {
            recording.replayCollection(filteredCollector);
        } catch (IOException e) {
            throw new QueryPhaseExecutionException(context.searchContext(), "Failed to replay deferred set of matching docIDs", e);
        }
View Full Code Here

TOP

Related Classes of org.elasticsearch.search.aggregations.FilteringBucketCollector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.