hive (study_hive)> explain select max(sal),deptno from emp group by deptno; OK Explain STAGE DEPENDENCIES: Stage-1is a root stage Stage-0 depends on stages: Stage-1
-- 默认为more -- 有三种选项 -- none 不使用Fetch抓取 -- minimal SELECT STAR, FILTER on partition columns, LIMIT only -- more SELECT, FILTER, LIMIT only (support TABLESAMPLE and virtual columns) set hive.fetch.task.conversion=more;
-- 开启本地模式(默认false) set hive.exec.mode.local.auto=true; -- 最大输入量,当输入数据量小于这个值时使用local本地模式,默认128M set hive.exec.mode.local.auto.inputbytes.max=134217728; -- 最大输入文件数,输入文件小于这个值时使用local本地模式,默认4 set hive.exec.mode.local.auto.input.files.max=4;