hive INSERT OVERWRITE table could not be cleaned up.

Posted 牵牛花

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive INSERT OVERWRITE table could not be cleaned up.相关的知识,希望对你有一定的参考价值。

create table maats.account_channel ROW FORMAT DELIMITED FIELDS TERMINATED BY ‘^‘ STORED AS TEXTFILE as select distinct a.account,b.channel from maats.register a join maats.install b on a.device = b.device;
 
INSERT OVERWRITE table maats.account_channel select distinct a.account,b.channel from maats.register a join maats.install b on a.device = b.device;
 
hvie 1.1 
第一次在create table 时没有加 STORED AS TEXTFILE 结果 INSERT OVERWRITE table 命令就只能执行一次,后面就报错,lz 就很奇怪,因为之前是可以的,记得hive默认是textFile格式的文件,
beeline中可以,但是 hive -e 不可以,

以上是关于hive INSERT OVERWRITE table could not be cleaned up.的主要内容,如果未能解决你的问题,请参考以下文章

Spark SQL写入Hive,同分区overwrite,不同分区insert

✨[面试进阶]INSERT INTO 和 INSERT OVERWRITE 的区别?(Hive篇)✨

✨[面试进阶]INSERT INTO 和 INSERT OVERWRITE 的区别?(Hive篇)✨

Hive-insert into table 与 insert overwrite table 区别

Hive-insert into table 与 insert overwrite table 区别

使用 INSERT OVERWRITE DIRECTORY 从 HIVE 表插入 HDFS 失败