Package org.apache.pig.backend.hadoop.executionengine.util

Examples of org.apache.pig.backend.hadoop.executionengine.util.ParallelConstantVisitor


                                    if (pred.isSampleBasedPartitioner()) {
                                        for (TezOperator partitionerPred : mPlan.getPredecessors(pred)) {
                                            if (partitionerPred.isSampleAggregation()) {
                                                LOG.debug("Updating constant value to " + parallelism + " in " + partitionerPred.plan);
                                                LOG.info("Increased requested parallelism of " + partitionerPred.getOperatorKey() + " to " + parallelism);
                                                ParallelConstantVisitor visitor =
                                                        new ParallelConstantVisitor(partitionerPred.plan, parallelism);
                                                visitor.visit();
                                                break;
                                            }
                                        }
                                        break;
                                    }
View Full Code Here

TOP

Related Classes of org.apache.pig.backend.hadoop.executionengine.util.ParallelConstantVisitor

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.