Hadoop上搭建hive;初始hhive;并运用zeppelin工具
作者:互联网
准备阶段
1.搭建好Hadoop的服务器。
2.hive压缩包 上传至/opt
3.zeppelin压缩包 上传至/opt
开始搭建
Hive的文件格式
Hive的使用
创建分区表
分区表操作:实际上就是建立一个个的文件夹,将数据按照你的分区约定,分别存放进去。分为静态分区和动态分区
创建一个分区表,id,name,birthmonth三列,其中按birthmonth分区:
%hive create table mydemo.my_part( id string, name string ) partitioned by (birthmonth string) -- 分区的那个列写在外面 row format delimited fields terminated by ','
手工创建一个静态分区
%hive alter table mydemo.my_part add partition(birthmonth='01') -- 实质上就是手工添加一个文件夹
此时去你的50070端口,你会发现在/hive/warehouse/mydemo.db/my_part路径下,为你生成好了一个 ‘birthmonth=01’ 文件夹
向指定分区里面插入Linux本地的数据文件进去(两种方法 : 静态 和 动态)
(overwrite全量表 : 会覆盖;不加就是增量表: 不会覆盖以前的数据,而是往后进行追加)
标签:string,分区,Hadoop,hive,birthmonth,分区表,zeppelin,mydemo 来源: https://www.cnblogs.com/zyp0519/p/15306919.html