Table Scan Operator If the data is coming from the map-reduce framework, just
forward it. This will be needed as part of local work when data is not being
read as part of map-reduce framework
ReduceSinkOperator: Reduce输出的操作符
JoinOperator:Join操作符
MapJoinOperator:MapJoin操作符
SelectOperator:查询操作符
FilterOperator:过滤操作符
GroupByOperator:group by 操作符
LimitOperator:Limit操作符
1.2 使用执行计划查询一个SQL
查看两个表Join的执行计划
hive>set hive.auto.convert.join;
hive.auto.convert.join=trueexplainselect*from emp e join dept d on d.deptno = e.dept_no;