Hive Failed with exception Unable to rename

异常信息:

Failed with exception Unable to rename: hdfs://localhost:9000/tmp/test/.hive-staging_hive_2015-07-26_13-25-29_210_6912071597543300126-1/-ext-10000 to: /tmp/test
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.MoveTask

解决方法:

hive-site.xml原始配置:

<property> 

<name>hive.exec.stagingdir</name>

<value>.hive-staging</value>

</property>

修改为:

<property> 

<name>hive.exec.stagingdir</name>

<value>/tmp/hive-staging/.hive-staging</value>

</property>

你可能感兴趣的:(Hive Failed with exception Unable to rename)