最近工作上需要用到大数据平台,之前没用过大数据相关的工具,所以踩了不少坑。今天就把在分区表中添加字段的坑分享出来,避免再次踩坑。
今天接到一个需求,在原有的 hive 分区表中需要添加一个字段,并且原来的数据中这个字段还是需要赋值。后续这个值是由 ETL 任务去拉取的,所以只需要解决好原来的数据。
代码如下:
-- 创建表,这里需要用 like,不能用 as,如果用 as 分区表的分区是不会复制到新表上 create table 库名.xxx_temp1 like 库名.xxx; -- 新增表字段 alter table 库名.xxx_temp1 add columns (xxx_fff string COMMENT "ccc"); -- 如果上面用了 like,里面的数据是不会到新表,需要执行下面的语句,把数据拉到新表 set hive.exec.dynamic.partition.mode=nonstrict; insert overwrite table 库名.xxx_temp1 partition(inc_day) select *, inc_day from 库名.xxx; -- 查看数据是否拉到新表 select * from 库名.xxx_temp1 limit 10; select count(*) from 库名.xxx_temp1 limit 10; -- 删除 xxx_temp2 drop table 库名.xxx_temp2; -- 创建 xxx_temp2 create table 库名.xxx_temp2 like 库名.xxx; -- 赋值 set hive.exec.dynamic.partition.mode=nonstrict; insert into table 库名.xxx_temp2 partition(inc_day) select * from 库名.xxx; -- 删除表 xxx_temp2 中数据 truncate table库名.xxx_temp2; -- 特别注意这里,分区表需要添加两次,只添加一次的话,到时候会没数据 alter table 库名.xxx_temp2 add columns (xxx_fff string COMMENT "ccc"); alter table 库名.xxx_temp2 partition(inc_day) add columns (xxx_fff string COMMENT "ccc"); -- 插入备份表的数据 set hive.exec.dynamic.partition.mode=nonstrict; insert overwrite table 库名.xxx_temp2 partition(inc_day) select * from 库名.xxx_temp1; -- 查询是否有数据和数据是否正确 select * from 库名.xxx_temp2 limit 10;
这里有两点需要注意的事项:
alter table 库名.xxx_temp1 add columns (xxx_fff string COMMENT "ccc");
这个语句就行了。alter table 库名.xxx_temp2 add columns (xxx_fff string COMMENT "ccc"); alter table 库名.xxx_temp2 partition(inc_day) add columns (xxx_fff string COMMENT "ccc");
这是在用大数据工具中的踩坑经历,希望能对大家有帮助,共同学习。