Package com.pearson.entech.elasticsearch.search.facet.approx.date.collectors

Examples of com.pearson.entech.elasticsearch.search.facet.approx.date.collectors.SlicedDistinctCollector


            if(valueFieldData == null)
                _collector = new DistinctCollector(keyFieldData, distinctFieldData, tzRounding, exactThreshold);
            else
                throw new FacetPhaseExecutionException("unknown date_facet", "Can't use distinct_field and value_field together");
        else if(valueFieldData == null)
            _collector = new SlicedDistinctCollector(keyFieldData, sliceFieldData, distinctFieldData, tzRounding, exactThreshold);
        else
            throw new FacetPhaseExecutionException("unknown date_facet", "Can't use distinct_field and value_field together");
    }
View Full Code Here

TOP

Related Classes of com.pearson.entech.elasticsearch.search.facet.approx.date.collectors.SlicedDistinctCollector

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.