hive-05-Execution Error, return code 3 from org.apache.hadoop.hive.ql.exec.mr.MapredLocalTask

hive命令行里执行了一句话:

select * from person  join zhanghao   on person.zjhm = zhanghao.zjhm limit 100 ; 

就是两个表做连接查询,数据量大小一个是3千万,一个是3亿
结果报错

hive> select * from person  join zhanghao   on person.zjhm = zhanghao.zjhm limit 100 ;  
WARNING: Hive-on-MR is deprecated in Hive 2 and may not be available in the future versions. Consider using a different execution engine (i.e. spark, tez) or using Hive 1.X releases.
Query ID = root_20171121152644_c3525e56-ea74-474f-8d14-c1d18f3b3f81
Total jobs = 1
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/opt/hzjs/apache-hive-2.1.1-bin/lib/log4j-slf4j-impl-2.4.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/opt/

你可能感兴趣的:(大数据-hive)