失败:执行错误,返回代码2 插入时出现org.apache.hadoop.hive.ql.exec.mr.MapRedTask错误 记录到蜂巢表中。
select * from tablename
工作正常。
我需要在hive-site.xml中添加任何属性吗?
答案 0 :(得分:0)
似乎您正在尝试插入分区表。 在插入之前设置下面的属性。
SET hive.exec.dynamic.partition = true;
SET hive.exec.dynamic.partition.mode = nonstrict;
set hive.exec.max.dynamic.partitions=10000;
set hive.exec.max.dynamic.partitions.pernode=1000;