当前位置:   article > 正文

alter table add partition ... location ...语法

alter table add partition

目录

结论


建表语句

  1. create table `wxtest`(
  2. `groupId` string,
  3. `uuid` string,
  4. `userId` string,
  5. `dt_index` string)
  6. partitioned by(
  7. `dt` string,
  8. `projId` string)
  9. row format delimited
  10. fields terminated by '\t';

添加两个分区

  1. insert into table wxtest partition(dt='20190621' , projId='111') values('a1','b1','c1','d1');
  2. insert into table wxtest partition(dt='20190622' , projId='112') values('a2','b2','c2','d2');

查询数据如下:

  1. hive> select * from wxtest;
  2. OK
  3. a1 b1 c1 d1 20190621 111
  4. a2 b2 c2 d2 20190622 112

下面是测试语法:

  1. alter table wxtest add if not exists partition(dt='test1',projId='test2')
  2. location '/home/hdp_teu_dpd/resultdata/wmda/terra/group/group_user_list/test1/test2';

然后往新分区里插入数据:

insert into table wxtest partition(dt='test1' , projId='test2') values('a3','b3','c3','d3');

然后查询hive表,发现hive表中是可以看到新分区(dt='test1' , projId='test2')的数据

  1. hive> select * from wxtest;
  2. OK
  3. a1 b1 c1 d1 20190621 111
  4. a2 b2 c2 d2 20190622 112
  5. a3 b3 c3 d3 test1 test2

但是hive表的HDFS存储路径下,并没有该分区的信息,只有两个原始分区的数据

查询sql语句中,location后的路径,发现该分区数据跑这来了

然后再往hive表中添加一个新分区数据:

insert into table wxtest partition(dt='20190619' , projId='113') values('a4','b4','c4','d4');

发现该分区数据依然在hive表原始路径下

 


得出结论:

alter table add if not exists partition....location....

这种语法,只是将hive表的新分区换了一个路径,该新分区数据不在hive表原始HDFS路径下,

同时也不影响hive中后续添加分区,依然处于原始路径下

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/148591
推荐阅读
相关标签
  

闽ICP备14008679号