org.apache.hadoop.hive.ql.optimizer.BucketMapjoinProc Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hive.ql.optimizer;
import java.util.Stack;
import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hadoop.hive.ql.ErrorMsg;
import org.apache.hadoop.hive.ql.exec.MapJoinOperator;
import org.apache.hadoop.hive.ql.lib.Node;
import org.apache.hadoop.hive.ql.lib.NodeProcessor;
import org.apache.hadoop.hive.ql.lib.NodeProcessorCtx;
import org.apache.hadoop.hive.ql.parse.ParseContext;
import org.apache.hadoop.hive.ql.parse.SemanticException;
public class BucketMapjoinProc extends AbstractBucketJoinProc implements NodeProcessor {
public BucketMapjoinProc(ParseContext pGraphContext) {
super(pGraphContext);
}
@Override
@SuppressWarnings("unchecked")
public Object process(Node nd, Stack stack, NodeProcessorCtx procCtx,
Object... nodeOutputs) throws SemanticException {
BucketJoinProcCtx context = (BucketJoinProcCtx) procCtx;
MapJoinOperator mapJoinOperator = (MapJoinOperator) nd;
// can the mapjoin present be converted to a bucketed mapjoin
boolean convert = canConvertMapJoinToBucketMapJoin(
mapJoinOperator, pGraphContext, context);
HiveConf conf = context.getConf();
// Throw an error if the user asked for bucketed mapjoin to be enforced and
// bucketed mapjoin cannot be performed
if (!convert && conf.getBoolVar(HiveConf.ConfVars.HIVEENFORCEBUCKETMAPJOIN)) {
throw new SemanticException(ErrorMsg.BUCKET_MAPJOIN_NOT_POSSIBLE.getMsg());
}
if (convert) {
// convert the mapjoin to a bucketized mapjoin
convertMapJoinToBucketMapJoin(mapJoinOperator, context);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy