Package co.nubetech.crux.server.aggregate

Examples of co.nubetech.crux.server.aggregate.GroupingAggregationBatch


        scan.setFilter(rowFilters);
        setSelectedColumns(report, scan);
        logger.debug("Scan object is " + scan);
        if (report.isAggregateReport()) {
          //means we have to aggregate
          GroupingAggregationBatch batchCall = new GroupingAggregationBatch(scan, report);
          GroupingAggregationBatchCallback callback = new GroupingAggregationBatchCallback(report);
          try {
            hTable.coprocessorExec(
              GroupingAggregationProtocol.class, scan.getStartRow(), scan.getStopRow(),
                batchCall, callback);
View Full Code Here

TOP

Related Classes of co.nubetech.crux.server.aggregate.GroupingAggregationBatch

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.