既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
hive> load data local inpath '/opt/soft/stu.txt' into table stu2
> partition (age=20,sex="male");
alter table stu2 add partition(age=10,sex='female');
//
show partitions stu2; // 查看分区
alter table stu2 drop partition(age=10,sex='female');
3、这种手动指定分区加载数据,就是常说的静态分区的使用。但是在日常工作中用的比较多的是动态分区。
静态分区是在创建表的时候就指定分区或者将表已经创建之后再指定分区(使用alter关键字)
二、动态分区
1、创建目标表
hive> create table stuo1(
> id int,
> name string,
> age int,
> gender string,
> likes array<string>,
> address map<string,string>
> )
> row format delimited
> fields terminated by ','
> collection items terminated by '-'
> map keys terminated by ':'
> lines terminated by '\n';
hive> create table stuo2(
> id int,
> name string,
> likes array<string>,
> address map<string,string>
> )
> partitioned by (age int,gender string)
> row format delimited
> fields terminated by ','
> collection items terminated by '-'
> map keys terminated by ':'
> lines terminated by '\n';
2、采用动态方式加载数据到目标表
加载之前先设置一下下面的参数
hive> set hive.exec.dynamic.partition=true;
hive> set hive.exec.dynamic.partition.mode=nonstrict;
开始加载
hive> insert into table stuo2 partition(age,gender)
> select id,name,likes,address,age,gender from stuo1;
上面加载数据方式并没有指定具体的分区,只是指出了分区字段。在select最后一个字段必须跟你的分区字段,这样就会自行根据(age,gender)
的value来分区。
3、验证一下
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
**
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!