hive删除数据并在分区

时间:2017-08-19 04:50:27

标签: hadoop hive

我有一个基于日期分区的配置单元表。当我向其中插入数据时,分区不会被覆盖。

注意:我使用动态分区插入多个分区。

以下是查询:

set hive.exec.dynamic.partition=true;
set hive.exec.dynamic.partition.mode=nonstrict;
insert overwrite table test1 partition(ds)
select user_id,ds
    from temp
    where ds between '2017-01-01' and '2017-02-01';

0 个答案:

没有答案