上一章介绍了如何安装hive以及hive的基础介绍,这里开始使用hive。使用之前先介绍hive的基础语句的学习,还有什么是内部表、外部表。

hive基础语句

我们来看看最基本的格式,因为格式有很多种,我们先来看一个总的,然后一点点解析。

1.建表语句

CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name
  // 定义字段名,字段类型
  [(col_name data_type [COMMENT col_comment], ...)]
  // 给表加上注解
  [COMMENT table_comment]
  // 分区
  [PARTITIONED BY (col_name data_type [COMMENT col_comment], ...)]
  // 分桶
  [CLUSTERED BY (col_name, col_name, ...) 
  // 设置排序字段 升序、降序
  [SORTED BY (col_name [ASC|DESC], ...)] INTO num_buckets BUCKETS]
  [
  	// 指定设置行、列分隔符 
   [ROW FORMAT row_format] 
   // 指定Hive储存格式:textFile、rcFile、SequenceFile 默认为:textFile
   [STORED AS file_format]
   
   | STORED BY 'storage.handler.class.name' [ WITH SERDEPROPERTIES (...) ]  (Note:  only available starting with 0.6.0)
  ]
  // 指定储存位置
  [LOCATION hdfs_path]
  // 跟外部表配合使用,比如:映射HBase表,然后可以使用HQL对hbase数据进行查询,当然速度比较慢
  [TBLPROPERTIES (property_name=property_value, ...)]  (Note:  only available starting with 0.6.0)
  [AS select_statement]  (Note: this feature is only available starting with 0.5.0.)

我们来分开一个一个细说:

建表1:全部使用默认建表方式

这里的是最基本的默认的建表语句,最后一句也可以没有,但是意味着你只能有一列数据。

create table students
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','; // 必选,指定列分隔符

建表2:指定location (这种方式也比较常用)

一般在数据已经上传到HDFS,想要直接使用,会指定Location,通常Locaion会跟外部表一起使用,内部表一般使用默认的location
指定数据的存储位置不一定是外部表,后面会说

create table students2
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
LOCATION '/input1'; // 指定Hive表的数据的存储位置

建表3:指定存储格式

这个是指定表的存储格式,对于这个存储格式,在上一章节介绍过数据存储的几种格式。

create table students3
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED AS rcfile; // 指定储存格式为rcfile,inputFormat:RCFileInputFormat,outputFormat:RCFileOutputFormat,如果不指定,默认为textfile,注意:除textfile以外,其他的存储格式的数据都不能直接加载,需要使用从表加载的方式。

建表4

create table xxxx as select_statement(SQL语句) (这种方式比较常用)

这种建表方式是不是很熟悉?在mysql中我们也接触过。

create table students4 as select * from students2;

建表5

create table xxxx like table_name  只想建表,不需要加载数据
create table students5 like students;

hive加载数据

上传文件

  1. 使用 hdfs dfs -put ‘本地数据’ 'hive表对应的HDFS目录下
  2. 使用 load data inpath
第一种方式应该就不用说了,这里来看第二中方式
// 将HDFS上的/input1目录下面的数据 移动至 students表对应的HDFS目录下,注意是 移动、移动、移动
load data inpath '/input1/students.txt' into table students;
这里为什么要强调移动呢,因为这种方式传文件,原来目录下的文件就不存在了。但是通过第一种的方式进行上传文件,原路径的问价还是存在的。这里简单区分一下。
这里注意一下:
  我们如果上传数据到hdfs的目录和hive表没有关系。
  上传到hive表和hive表有关系(需要进行数据的转换)。

清空文件

清空表内容

truncate table students;

这里注意一下:加上 local 关键字 可以将Linux本地目录下的文件 上传到 hive表对应HDFS 目录下 原文件不会被删除

load data local inpath '/usr/local/soft/data/students.txt' into table students;
overwrite 覆盖加载
load data local inpath '/usr/local/soft/data/students.txt' overwrite into table students;

加载数据

基础格式

hive> dfs -put /usr/local/soft/data/students.txt /input2/;
hive> dfs -put /usr/local/soft/data/students.txt /input3/;

删除表

格式

drop table <table_name>
Moved: 'hdfs://master:9000/input2' to trash at: hdfs://master:9000/user/root/.Trash/Current

OK
Time taken: 0.474 seconds
hive> drop table students_external;
OK
Time taken: 0.09 seconds
hive>

注意:

  1. 可以看出,删除内部表的时候,表中的数据(HDFS上的文件)会被同表的元数据一起删除。
  2. 删除外部表的时候,只会删除的元数据,不会删除表中的数据(HDFS上的文件)。
  3. 一般在公司中,使用外部表多一点,因为数据可以需要多个程序使用,避免误删,通常外部表结合location一起使用。
  4. 外部表还可以将其他数据数据源中的数据,映射到hive中,比如说:hbase,ElasticSearch…
  5. 设计外部表的初衷就是 让 表的元数据 与 数据 解耦。

Hive 分区

概念

分区表实际上就是在表的目录下在以分区命名,建子目录

作用

进行分区裁剪,避免全表扫描,减少MapReduce处理的数据量,提高效率

注意事项:

  1. 一般在公司中,几乎所有的表都是分区表,通常按日期分区、地域分区。
  2. 分区表在使用的时候记得加上分区字段
  3. 分区也不是越多越好,一般不超过三级,按实际业务衡量。

建立分区表

create external table students_pt1
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
PARTITIONED BY(pt string)
ROW F

增加一个分区

alter table students_pt1 add partition(pt='20210904');

删除一个分区

alter table students_pt drop partition(pt='20210904');

查看分区

查看某个表中的所有分区

show partitions students_pt; // 推荐这种方式(直接从元数据中获取分区信息)

select distinct pt from students_pt; // 不推荐

插入数据

往分区中添加数据

insert into table students_pt partition(pt='20210902') select * from students;

load data local inpath '/usr/local/soft/data/students.txt' into table students_pt partition(pt='20210902');

查询分区数据

查询某个分区的数据

// 全表扫描,不推荐,效率低
select count(*) from students_pt;

// 使用where条件进行分区裁剪,避免了全表扫描,效率高
select count(*) from students_pt where pt='20210101';

// 也可以在where条件中使用非等值判断
select count(*) from students_pt where pt<='20210112' and pt>='20210110';

Hive动态分区

有时候我们原始表中的的数据包含了''日期字段 dt'',我们需要根据dt
中不同的日期,分为不同的分区,将原始表改成分区表。
hive默认不开启动态分区

概念

动态分区:根据数据中某几列的不同的取值 划分 不同的数据。

开启Hive的动态分区支持

# 表示开启动态分区
hive> set hive.exec.dynamic.partition=true;
# 表示动态分区模式:strict(需要配合静态分区一起使用)、nostrict
# strict: insert into table students_pt partition(dt='anhui',pt) select ......,pt from students;
hive> set hive.exec.dynamic.partition.mode=nostrict;
# 表示支持的最大的分区数量为1000,可以根据业务自己调整
hive> set hive.exec.max.dynamic.partitions.pernode=1000;

练习

  1. 建立原始表并加载数据
create table students_dt
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string,
    dt string
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';
  1. 建立分区表并加载数据
create table students_dt_p
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
PARTITIONED BY(dt string)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';
  1. 使用动态分区插入数据
// 分区字段需要放在 select 的最后,如果有多个分区字段 同理,它是按位置匹配,不是按名字匹配
insert into table students_dt_p partition(dt) select id,name,age,gender,clazz,dt from students_dt;


// 比如下面这条语句会使用age作为分区字段,而不会使用student_dt中的dt作为分区字段
insert into table students_dt_p partition(dt) select id,name,age,gender,dt,age from students_dt;
  1. 多级分区
create table students_year_month
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string,
    year string,
    month string
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';

create table students_year_month_pt
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
PARTITIONED BY(year string,month string)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';

insert into table students_year_month_pt partition(year,month) select id,name,age,gender,clazz,year,month from students_year_month;

Hive分桶

概念

hive的分桶世纪上就是对文件(数据)的进一步切分
hive默认是关闭分桶

作用

在往分桶表中插入数据的时候,会根据clustered by 指定的字段,进
行hash分区,对指定的buckets个数,进行取余,进而可以将数据分割
成buckets个数个文件,进以达到数据均匀分布,可以解决Map的“数据
倾斜”问题,方便我们取抽样数据,提高Map join效率。

分桶字段需要根据业务进行设定

开启分桶

由于分桶默认是关闭的,

hive> set hive.enforce.bucketing=true;

建立分桶表

create table students_buks
(
    id bigint,
    name string,
    age int,
    gender string,
    clazz string
)
CLUSTERED BY (clazz) into 12 BUCKETS
ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';

添加数据

// 直接使用load data 并不能将数据打散
load data local inpath '/usr/local/soft/data/students.txt' into table students_buks;

// 需要使用下面这种方式插入数据,才能使分桶表真正发挥作用
insert into students_buks select * from students;

https://zhuanlan.zhihu.com/p/93728864 Hive分桶表的使用场景以及优缺点分析

Hive JDBC

启动hive server2

hive --service hiveserver2 &

或者
hiveserver2 &
新建maven项目并添加两个依赖
<dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-common</artifactId>
        <version>2.7.6</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.apache.hive/hive-jdbc -->
    <dependency>
        <groupId>org.apache.hive</groupId>
        <artifactId>hive-jdbc</artifactId>
        <version>1.2.1</version>
    </dependency>
编写JDBC代码
import java.sql.*;

public class HiveJDBC {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        Class.forName("org.apache.hive.jdbc.HiveDriver");
        Connection conn = DriverManager.getConnection("jdbc:hive2://master:10000/test3");
        Statement stat = conn.createStatement();
        ResultSet rs = stat.executeQuery("select * from students limit 10");
        while (rs.next()) {
            int id = rs.getInt(1);
            String name = rs.getString(2);
            int age = rs.getInt(3);
            String gender = rs.getString(4);
            String clazz = rs.getString(5);
            System.out.println(id + "," + name + "," + age + "," + gender + "," + clazz);
        }
        rs.close();
        stat.close();
        conn.close();
    }
}