动态删除impala中的分区

时间:2017-09-29 12:54:06

标签: partitioning impala

Impala允许动态添加分区,如下所示。

insert into table1 partition (part_col1="merged",part_col2,part_col3) 
select  col1,col2,col3,part_col2,part_col3 from table2 where 
col="SomeValue"

因此它将根据select查询的结果添加多个分区。但是当删除分区时似乎没有等效。在那儿 ?您必须显式指定要删除的分区。

alter table table1 drop 
partition(part_col1="A",part_col2="B",part_col3="C") 

我不能只说像

这样的话
alter table table1 drop partition(part_col1="A",part_col2,part_col3)

1 个答案:

答案 0 :(得分:0)

不幸的是,无法像您在示例中指定的那样动态删除分区。