1.搭建好Hadoop的服务器。
2.hive压缩包 上传至/opt
3.zeppelin压缩包 上传至/opt
分区表操作:实际上就是建立一个个的文件夹,将数据按照你的分区约定,分别存放进去。分为静态分区和动态分区
创建一个分区表,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’ 文件夹
(overwrite全量表 : 会覆盖;不加就是增量表: 不会覆盖以前的数据,而是往后进行追加)