hive动态分区
程序员文章站
2022-03-05 10:09:41
...
1、动态分区参数设置
开启动态分区—默认为false
hive.exec.dynamic.partition =true
设置动态分区模式
动态分区的模式为strict,表示必须指定至少一个分区为静态分区,
nonstrict模式表示允许所有的分区字段都可以使用动态分区。一般需要设置为nonstrict
hive.exec.dynamic.partition.mode = nonstrict
2、动态分区的使用
即往分区中插入数据时不需要手动指定分区,可以将查找到的最后一列作为分区
insert into table table_part partition(time) select field1 , field2 , time from table;
-- 注:select 子句最后一列要为分区表的分区列