hive自动加载分区

Posted students

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive自动加载分区相关的知识,希望对你有一定的参考价值。

hive -e ‘
use bd;
set  hive.exec.max.dynamic.partitions.pernode=100;
set hive.exec.dynamici.partition=true;
set hive.exec.dynamic.partition.mode=nonstrict;
insert overwrite table ods_ticket
partition(sale_day)
select * from (select *,substr(sale_time,0,10) from tmp_ods_ticket where substr(sale_time,0,10) > "2020-01-25")t ;‘

 

以上是关于hive自动加载分区的主要内容,如果未能解决你的问题,请参考以下文章

Hive 分区表 - 尝试将数据从一个表加载到我的 Hive 中的分区表并得到 [错误 10044]*

加载到 Hive 分区 Parquet 表时内存不足

如何加载分区到 Hbase 表的 hive orc

数据未加载到 Hive 中的分区表中

使用 ALTER 添加新列后,数据错误地加载到 Hive 分区表中

大数据之hive:hive分区表