hive基础-2
hive基础-2
分区表和分桶表
分区表
分区表实际上就是对应一个 HDFS 文件系统上的独立的文件夹,该文件夹下是该分区所有的数据文件。Hive 中的分区就是分目录,把一个大的数据集根据业务需要分割成小的数据集。在查询时通过 WHERE 子句中的表达式选择查询所需要的指定的分区,这样的查询效率会提高很多。
语法:partitioned by 【order by】
分区表基本操作
引入分区表(需要根据日期对日志进行管理, 通过部门信息模拟)
1
2
3dept_20200401.log
dept_20200402.log
dept_20200403.log创建分区表语法
1
2
3
4
5hive (default)> create table dept_partition(
deptno int, dname string, loc string
)
partitioned by (day string)
row format delimited fields terminated by '\t';注意:分区字段不能是表中已经存在的数据,可以将分区字段看作表的伪列。
加载数据到分区表中
数据准备
dept_20200401.log
1
210 ACCOUNTING 1700
20 RESEARCH 1800dept_20200402.log.
1
230 SALES 1900
40 OPERATIONS 1700dept_20200403.log
1
250 TEST 2000
60 DEV 1900加载数据
1
2
3
4
5
6
7
8
9hive (default)> load data local inpath
'/opt/module/hive/datas/dept_20200401.log' into table dept_partition
partition(day='20200401');
hive (default)> load data local inpath
'/opt/module/hive/datas/dept_20200402.log' into table dept_partition
partition(day='20200402');
hive (default)> load data local inpath
'/opt/module/hive/datas/dept_20200403.log' into table dept_partition
partition(day='20200403');注意:分区表加载数据时,必须指定分区
查询分区表中数据
单分区查询
1
hive (default)> select * from dept_partition where day='20200401';
多分区联合查询
1
2
3
4
5
6
7hive (default)> select * from dept_partition where day='20200401'
union
select * from dept_partition where day='20200402'
union
select * from dept_partition where day='20200403';
hive (default)> select * from dept_partition where day='20200401' or
day='20200402' or day='20200403';增加分区
创建单个分区
1
hive (default)> alter table dept_partition add partition(day='20200404');
同时创建多个分区
1
2hive (default)> alter table dept_partition add partition(day='20200405')
partition(day='20200406');删除分
删除单个分区
1
2hive (default)> alter table dept_partition drop partition
(day='20200406');同时删除多个分区
1
2hive (default)> alter table dept_partition drop partition
(day='20200404'), partition(day='20200405');查看分区表有多少分区
1
hive> show partitions dept_partition;
查看分区表结构
1
2
3
4hive> desc formatted dept_partition;
# Partition Information
# col_name data_type comment
month string
二级分区
思考: 如何一天的日志数据量也很大,如何再将数据拆分?
创建二级分区表
1
2
3
4
5hive (default)> create table dept_partition2(
deptno int, dname string, loc string
)
partitioned by (day string, hour string)
row format delimited fields terminated by '\t';正常的加载数据
加载数据到二级分区表中
1
2
3hive (default)> load data local inpath
'/opt/module/hive/datas/dept_20200401.log' into table
dept_partition2 partition(day='20200401', hour='12');查询分区数据
1
2hive (default)> select * from dept_partition2 where day='20200401' and
hour='12';
把数据直接上传到分区目录上,让分区表和数据产生关联的三种方式
方式一:上传数据后修复
上传数据
1
2
3
4hive (default)> dfs -mkdir -p
/user/hive/warehouse/mydb.db/dept_partition2/day=20200401/hour=13;
hive (default)> dfs -put /opt/module/datas/dept_20200401.log
/user/hive/warehouse/mydb.db/dept_partition2/day=20200401/hour=13;查询数据(查询不到刚上传的数据)
1
2hive (default)> select * from dept_partition2 where day='20200401' and
hour='13';执行修复命令
1
hive> msck repair table dept_partition2;
再次查询数据
1
2hive (default)> select * from dept_partition2 where day='20200401' and
hour='13';方式二:上传数据后添加分区
上传数据
1
2
3
4hive (default)> dfs -mkdir -p
/user/hive/warehouse/mydb.db/dept_partition2/day=20200401/hour=14;
hive (default)> dfs -put /opt/module/hive/datas/dept_20200401.log
/user/hive/warehouse/mydb.db/dept_partition2/day=20200401/hour=14;执行添加分区
1
2hive (default)> alter table dept_partition2 add
partition(day='201709',hour='14');查询数据
1
2hive (default)> select * from dept_partition2 where day='20200401' and
hour='14';方式三:创建文件夹后 load 数据到分区
创建目录
1
2hive (default)> dfs -mkdir -p
/user/hive/warehouse/mydb.db/dept_partition2/day=20200401/hour=15;上传数据
1
2
3hive (default)> load data local inpath
'/opt/module/hive/datas/dept_20200401.log' into table
dept_partition2 partition(day='20200401',hour='15');查询数据
1
2hive (default)> select * from dept_partition2 where day='20200401' and
hour='15';
动态分区调整
关系型数据库中,对分区表 Insert 数据时候,数据库自动会根据分区字段的值,将数据
插入到相应的分区中,Hive 中也提供了类似的机制,即动态分区(Dynamic Partition),只不过,
使用 Hive 的动态分区,需要进行相应的配置。
开启动态分区参数设置
开启动态分区功能(默认 true,开启)
1
hive.exec.dynamic.partition=true
设置为非严格模式(动态分区的模式,默认 strict,表示必须指定至少一个分区为静态分区,nonstrict 模式表示允许所有的分区字段都可以使用动态分区。)
1
hive.exec.dynamic.partition.mode=nonstrict
在所有执行 MR 的节点上,最大一共可以创建多少个动态分区。默认 1000
1
hive.exec.max.dynamic.partitions=1000
在每个执行 MR 的节点上,最大可以创建多少个动态分区。该参数需要根据实际的数据来设定。比如:源数据中包含了一年的数据,即 day 字段有 365 个值,那么该参数就需要设置成大于 365,如果使用默认值 100,则会报错。
1
hive.exec.max.dynamic.partitions.pernode=100
整个 MR Job 中,最大可以创建多少个 HDFS 文件。默认 100000
hive.exec.max.created.files=100000
当有空分区生成时,是否抛出异常。一般不需要设置。默认 false
1
hive.error.on.empty.partition=false
案例实操
需求:将 dept 表中的数据按照地区(loc 字段),插入到目标表 dept_partition 的相应分区中。
创建目标分区表
1
2hive (default)> create table dept_partition_dy(id int, name string)
partitioned by (loc int) row format delimited fields terminated by '\t';设置动态分区
1
2
3set hive.exec.dynamic.partition.mode = nonstrict;
hive (default)> insert into table dept_partition_dy partition(loc) select
deptno, dname, loc from dept;查看目标分区表的分区情况
1
hive (default)> show partitions dept_partition;
思考:目标分区表是如何匹配到分区字段的?
分桶表
分区提供一个隔离数据和优化查询的便利方式。不过,并非所有的数据集都可形成合理的分区。对于一张表或者分区,Hive 可以进一步组织成桶,也就是更为细粒度的数据范围划分。
分桶是将数据集分解成更容易管理的若干部分的另一个技术。
分区针对的是数据的存储路径;分桶针对的是数据文件。
语法:into 4 buckets
先创建分桶表
数据准备
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
161001 ss1
1002 ss2
1003 ss3
1004 ss4
1005 ss5
1006 ss6
1007 ss7
1008 ss8
1009 ss9
1010 ss10
1011 ss11
1012 ss12
1013 ss13
1014 ss14
1015 ss15
1016 ss16创建分桶表
1
2
3
4create table stu_buck(id int, name string)
clustered by(id)
into 4 buckets
row format delimited fields terminated by '\t';查看表结构
1
2hive (default)> desc formatted stu_buck;
Num Buckets:导入数据到分桶表中,load 的方式
1
hive (default)> load data inpath '/student.txt' into table stu_buck;
查看创建的分桶表中是否分成 4 个桶
查询分桶的数据
1
hive(default)> select * from stu_buck;
分桶规则:
根据结果可知:Hive 的分桶采用对分桶字段的值进行哈希,然后除以桶的个数求余的方式决定该条记录存放在哪个桶当中
分桶表操作需要注意的事项:
- reduce 的个数设置为-1,让 Job 自行决定需要用多少个 reduce 或者将 reduce 的个数设置为大于等于分桶表的桶数
- 从 hdfs 中 load 数据到分桶表中,避免本地文件找不到问题
- 不要使用本地模式
insert 方式将数据导入分桶表
1
hive(default)>insert into table stu_buck select * from student_insert;
抽样查询
对于非常大的数据集,有时用户需要使用的是一个具有代表性的查询结果而不是全部结果。Hive 可以通过对表进行抽样来满足这个需求。
语法: TABLESAMPLE(BUCKET x OUT OF y)
查询表 stu_buck 中的数据
1 | hive (default)> select * from stu_buck tablesample(bucket 1 out of 4 on id); |
注意:x 的值必须小于等于 y 的值,否则
1 | FAILED: SemanticException [Error 10061]: Numerator should not be bigger |
函数
系统内置函数
查看系统自带的函数
1
hive> show functions;
显示自带的函数的用法
1
hive> desc function upper;
详细显示自带的函数的用法
1
hive> desc function extended upper;
UDF:一进多出
UDAF:多进一出
UDTF:一进多出
常用内置函数
空字段赋值
函数说明
NVL:给值为 NULL 的数据赋值,它的格式是 NVL( value,default_value)。它的功能是如果 value 为 NULL,则 NVL 函数返回 default_value 的值,否则返回 value 的值,如果两个参数都为 NULL ,则返回 NULL。
数据准备:采用员工表
查询:如果员工的 comm 为 NULL,则用-1 代替
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17hive (default)> select comm,nvl(comm, -1) from emp;
OK
comm _c1
NULL -1.0
300.0 300.0
500.0 500.0
NULL -1.0
1400.0 1400.0
NULL -1.0
NULL -1.0
NULL -1.0
NULL -1.0
0.0 0.0
NULL -1.0
NULL -1.0
NULL -1.0
NULL -1.0查询:如果员工的 comm 为 NULL,则用领导 id 代替
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17hive (default)> select comm, nvl(comm,mgr) from emp;
OK
comm _c1
NULL 7902.0
300.0 300.0
500.0 500.0
NULL 7839.0
1400.0 1400.0
NULL 7839.0
NULL 7839.0
NULL 7566.0
NULL NULL
0.0 0.0
NULL 7788.0
NULL 7698.0
NULL 7566.0
NULL 7782.0
CASE WHEN THEN ELSE END
数据准备
1
2
3
4
5
6
7name dept_id sex
悟空 A 男
大海 A 男
宋宋 B 男
凤姐 A 女
婷姐 B 女
婷婷 B 女需求
求出不同部门男女各多少人。结果如下:
1
2
3dept_Id 男 女
A 2 1
B 1 2创建本地 emp_sex.txt,导入数据
1
2
3
4
5
6
7[atguigu@hadoop102 datas]$ vi emp_sex.txt
悟空 A 男
大海 A 男
宋宋 B 男
凤姐 A 女
婷姐 B 女
婷婷 B 女创建 hive 表并导入数据
1
2
3
4
5
6
7create table emp_sex(
name string,
dept_id string,
sex string)
row format delimited fields terminated by "\t";
load data local inpath '/opt/module/hive/data/emp_sex.txt' into table
emp_sex;按需求查询数据
1
2
3
4
5
6select
dept_id,
sum(case sex when '男' then 1 else 0 end) male_count,
sum(case sex when '女' then 1 else 0 end) female_count
from emp_sex
group by dept_id;也可以是:
1
2
3
4
5
6select
dept_id,
sum(if(sex = '男',1,0)) male_count,
sum(if(sex = '女',1,0)) female_count
from emp_sex
group by dept_id;
行转列
相关函数说明
CONCAT(string A/col, string B/col…):返回输入字符串连接后的结果,支持任意个输入字符串;
CONCAT_WS(separator, str1, str2,…):它是一个特殊形式的 CONCAT()。第一个参数剩余参数间的分隔符。分隔符可以是与剩余参数一样的字符串。如果分隔符是 NULL,返回值也将为 NULL。这个函数会跳过分隔符参数后的任何 NULL 和空字符串。分隔符将被加到被连接的字符串之间;
注意: CONCAT_WS must be “string or array
<string>
COLLECT_SET(col):函数只接受基本数据类型,它的主要作用是将某字段的值进行去重汇总,产生 Array 类型字段。
数据准备
1
2
3
4
5
6
7name constellation blood_type
孙悟空 白羊座 A
大海 射手座 A
宋宋 白羊座 B
猪八戒 白羊座 A
凤姐 射手座 A
苍老师 白羊座 B需求
把星座和血型一样的人归类到一起。结果如下:
1
2
3射手座,A 大海|凤姐
白羊座,A 孙悟空|猪八戒
白羊座,B 宋宋|苍老师创建本地 constellation.txt,导入数据
1
2
3
4
5
6
7vim /opt/module/hive/data/person_info.txt
孙悟空 白羊座 A
大海 射手座 A
宋宋 白羊座 B
猪八戒 白羊座 A
凤姐 射手座 A
苍老师 白羊座 B创建 hive 表并导入数据
1
2
3
4
5
6
7create table person_info(
name string,
constellation string,
blood_type string)
row format delimited fields terminated by "\t";
load data local inpath "/opt/module/hive/data/person_info.txt" into table
person_info;按需求查询数据
1
2
3
4
5
6
7
8
9
10SELECT
t1.c_b,
CONCAT_WS("|",collect_set(t1.name))
FROM (
SELECT
NAME,
CONCAT_WS(',',constellation,blood_type) c_b
FROM person_info
)t1
GROUP BY t1.c_b
列转行
函数说明
EXPLODE(col):将 hive 一列中复杂的 Array 或者 Map 结构拆分成多行。
LATERAL VIEW
用法:LATERAL VIEW udtf(expression) tableAlias AS columnAlias
解释:用于和 split, explode 等 UDTF 一起使用,它能够将一列数据拆成多行数据,在此基础上可以对拆分后的数据进行聚合。
数据准备
1
2
3
4movie category
《疑犯追踪》 悬疑,动作,科幻,剧情
《Lie to me》 悬疑,警匪,动作,心理,剧情
《战狼 2》 战争,动作,灾难需求
将电影分类中的数组数据展开。结果如下:
1
2
3
4
5
6
7
8
9
10
11
12《疑犯追踪》 悬疑
《疑犯追踪》 动作
《疑犯追踪》 科幻
《疑犯追踪》 剧情
《Lie to me》 悬疑
《Lie to me》 警匪
《Lie to me》 动作
《Lie to me》 心理
《Lie to me》 剧情
《战狼 2》 战争
《战狼 2》 动作
《战狼 2》 灾难创建本地 movie.txt,导入数据
1
2
3
4[atguigu@hadoop102 datas]$ vi movie_info.txt
《疑犯追踪》 悬疑,动作,科幻,剧情
《Lie to me》悬疑,警匪,动作,心理,剧情
《战狼 2》 战争,动作,灾难创建 hive 表并导入数据
1
2
3
4
5
6create table movie_info(
movie string,
category string)
row format delimited fields terminated by "\t";
load data local inpath "/opt/module/data/movie.txt" into table
movie_info;按需求查询数据
1
2
3
4
5
6
7SELECT
movie,
category_name
FROM
movie_info
lateral VIEW
explode(split(category,",")) movie_info_tmp AS category_name;
窗口函数(开窗函数)
相关函数说明
OVER():指定分析函数工作的数据窗口大小,这个数据窗口大小可能会随着行的变而变化。
CURRENT ROW:当前行
n PRECEDING:往前 n 行数据
n FOLLOWING:往后 n 行数据
UNBOUNDED:起点,
UNBOUNDED PRECEDING 表示从前面的起点,
UNBOUNDED FOLLOWING 表示到后面的终点
LAG(col,n,default_val):往前第 n 行数据
LEAD(col,n, default_val):往后第 n 行数据
NTILE(n):把有序窗口的行分发到指定数据的组中,各个组有编号,编号从 1 开始,对于每一行,NTILE 返回此行所属的组的编号。注意:n 必须为 int 类型。
数据准备:name,orderdate,cost
1
2
3
4
5
6
7
8
9
10
11
12
13
14jack,2017-01-01,10
tony,2017-01-02,15
jack,2017-02-03,23
tony,2017-01-04,29
jack,2017-01-05,46
jack,2017-04-06,42
tony,2017-01-07,50
jack,2017-01-08,55
mart,2017-04-08,62
mart,2017-04-09,68
neil,2017-05-10,12
mart,2017-04-11,75
neil,2017-06-12,80
mart,2017-04-13,94需求
查询在 2017 年 4 月份购买过的顾客及总人数
查询顾客的购买明细及月购买总额
上述的场景, 将每个顾客的 cost 按照日期进行累加
查询每个顾客上次的购买时间
查询前 20%时间的订单信息
创建本地 business.txt,导入数据
1
[atguigu@hadoop102 datas]$ vi business.txt
创建 hive 表并导入数据
1
2
3
4
5
6
7create table business(
name string,
orderdate string,
cost int
) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';
load data local inpath "/opt/module/data/business.txt" into table
business;按需求查询数据
查询在 2017 年 4 月份购买过的顾客及总人数
1
2
3
4select name,count(*) over ()
from business
where substring(orderdate,1,7) = '2017-04'
group by name;查询顾客的购买明细及月购买总额
1
2select name,orderdate,cost,sum(cost) over(partition by month(orderdate))
from business;将每个顾客的 cost 按照日期进行累加
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15select name,orderdate,cost,
sum(cost) over() as sample1,--所有行相加
sum(cost) over(partition by name) as sample2,--按 name 分组,组内数据相加
sum(cost) over(partition by name order by orderdate) as sample3,--按 name
分组,组内数据累加
sum(cost) over(partition by name order by orderdate rows between
UNBOUNDED PRECEDING and current row ) as sample4 ,--和 sample3 一样,由起点到
当前行的聚合
sum(cost) over(partition by name order by orderdate rows between 1
PRECEDING and current row) as sample5, --当前行和前面一行做聚合
sum(cost) over(partition by name order by orderdate rows between 1
PRECEDING AND 1 FOLLOWING ) as sample6,--当前行和前边一行及后面一行
sum(cost) over(partition by name order by orderdate rows between current
row and UNBOUNDED FOLLOWING ) as sample7 --当前行及后面所有行
from business;rows 必须跟在 order by 子句之后,对排序的结果进行限制,使用固定的行数来限制分区中的数据行数量
查看顾客上次的购买时间
1
2
3
4
5select name,orderdate,cost,
lag(orderdate,1,'1900-01-01') over(partition by name order by orderdate )
as time1, lag(orderdate,2) over (partition by name order by orderdate) as
time2
from business;查询前 20%时间的订单信息
1
2
3
4
5select * from (
select name,orderdate,cost, ntile(5) over(order by orderdate) sorted
from business
) t
where sorted = 1;
Rank
函数说明
RANK() 排序相同时会重复,总数不会变
DENSE_RANK() 排序相同时会重复,总数会减少
ROW_NUMBER() 会根据顺序计算
数据准备
1
2
3
4
5
6
7
8
9
10
11
12
13name subject score
孙悟空 语文 87
孙悟空 数学 95
孙悟空 英语 68
大海 语文 94
大海 数学 56
大海 英语 84
宋宋 语文 64
宋宋 数学 86
宋宋 英语 84
婷婷 语文 65
婷婷 数学 85
婷婷 英语 78需求
计算每门学科成绩排名。
创建本地 score.txt,导入数据
1
[atguigu@hadoop102 datas]$ vi score.txt
创建 hive 表并导入数据
1
2
3
4
5
6create table score(
name string,
subject string,
score int)
row format delimited fields terminated by "\t";
load data local inpath '/opt/module/data/score.txt' into table score;按需求查询数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20select name,
subject,
score,
rank() over(partition by subject order by score desc) rp,
dense_rank() over(partition by subject order by score desc) drp,
row_number() over(partition by subject order by score desc) rmp
from score;
name subject score rp drp rmp
孙悟空 数学 95 1 1 1
宋宋 数学 86 2 2 2
婷婷 数学 85 3 3 3
大海 数学 56 4 4 4
宋宋 英语 84 1 1 1
大海 英语 84 1 1 2
婷婷 英语 78 3 2 3
孙悟空 英语 68 4 3 4
大海 语文 94 1 1 1
孙悟空 语文 87 2 2 2
婷婷 语文 65 3 3 3
宋宋 语文 64 4 4 4
其他常用函数
1 | 常用日期函数 |
自定义函数
Hive 自带了一些函数,比如:max/min 等,但是数量有限,自己可以通过自定义 UDF 来方便的扩展。
当 Hive 提供的内置函数无法满足你的业务处理需要时,此时就可以考虑使用用户自定义函数(UDF:user-defined function)。
根据用户自定义函数类别分为以下三种:
UDF(User-Defined-Function)
一进一出
UDAF(User-Defined Aggregation Function)
聚集函数,多进一出
类似于:count/max/min
UDTF(User-Defined Table-Generating Functions)
一进多出
如 lateral view explode()
官方文档地址
https://cwiki.apache.org/confluence/display/Hive/HivePlugins
编程步骤:
继承 Hive 提供的类
1
2org.apache.hadoop.hive.ql.udf.generic.GenericUDF
org.apache.hadoop.hive.ql.udf.generic.GenericUDTF;实现类中的抽象方法
在 hive 的命令行窗口创建函数
添加 jar
1
add jar linux_jar_path
创建 function
1
create [temporary] function [dbname.]function_name AS class_name;
在 hive 的命令行窗口删除函数
1
drop [temporary] function [if exists] [dbname.]function_name;
自定义 UDF 函数
需求:
自定义一个 UDF 实现计算给定字符串的长度,例如:
1
hive(default)> select my_len("abcd");
创建一个 Maven 工程 Hive
导入依赖
1
2
3
4
5
6
7<dependencies>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
<version>3.1.2</version>
</dependency>
</dependencies>创建一个类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60package top.lvxiaoyi.udf;
import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
import org.apache.hadoop.hive.ql.exec.UDFArgumentLengthException;
import org.apache.hadoop.hive.ql.exec.UDFArgumentTypeException;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.ql.udf.generic.GenericUDF;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
/**
* @author lvxiaoyi
* @date 2021/11/16 15:14
*/
public class MyStringLength extends GenericUDF {
/**
* @param arguments 输入参数类型的鉴别器对象
* @return 返回值类型的鉴别器对象
* @throws UDFArgumentException
*/
public ObjectInspector initialize(ObjectInspector[] arguments) throws
UDFArgumentException {
// 判断输入参数的个数
if (arguments.length != 1) {
throw new UDFArgumentLengthException("Input Args LengthError !!!");
}
// 判断输入参数的类型
if (!arguments[0].getCategory().equals(ObjectInspector.Category.PRIMITIVE)) {
throw new UDFArgumentTypeException(0, "Input Args TypeError !!!");
}
//函数本身返回值为 int,需要返回 int 类型的鉴别器对象
return PrimitiveObjectInspectorFactory.javaIntObjectInspector;
}
/**
* 函数的逻辑处理
*
* @param arguments 输入的参数
* @return 返回值
* @throws HiveException
*/
public Object evaluate(DeferredObject[] arguments) throws HiveException {
if (arguments[0].get() == null) {
return 0;
}
return arguments[0].get().toString().length();
}
/*
*
* 执行计划,也就是打印日志
*/
public String getDisplayString(String[] children) {
return "";
}
}打成 jar 包上传到服务器/opt/module/data/myudf.jar
将 jar 包添加到 hive 的 classpath
1
hive (default)> add jar /opt/module/data/myudf.jar;
创建临时函数与开发好的 java class 关联
1
hive (default)> create temporary function my_len as "top.lvxiaoyi.udf.MyStringLength";
即可在 hql 中使用自定义的函数
1
hive (default)> select ename,my_len(ename) ename_len from emp;
自定义 UDTF 函数
需求
自定义一个 UDTF 实现将一个任意分割符的字符串切割成独立的单词,例如:
1
2
3
4
5hive(default)> select myudtf("hello,world,hadoop,hive", ",");
hello
world
hadoop
hive代码实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57package top.lvxiaoyi.udtf;
import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.ql.udf.generic.GenericUDTF;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.StructObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
import java.util.ArrayList;
import java.util.List;
/**
* @author lvxiaoyi
* @date 2021/11/16 15:34
*/
public class MyUDTF extends GenericUDTF {
private ArrayList<String> outList = new ArrayList<>();
public StructObjectInspector initialize(StructObjectInspector argOIs) throws UDFArgumentException {
//1.定义输出数据的列名和类型
List<String> fieldNames = new ArrayList<>();
List<ObjectInspector> fieldOIs = new ArrayList<>();
//2.添加输出数据的列名和类型
fieldNames.add("lineToWord");
fieldOIs.add(PrimitiveObjectInspectorFactory.javaStringObjectInspector);
return ObjectInspectorFactory.getStandardStructObjectInspector(fieldNames, fieldOIs);
}
public void process(Object[] args) throws HiveException {
//1.获取原始数据
String arg = args[0].toString();
//2.获取数据传入的第二个参数,此处为分隔符
String splitKey = args[1].toString();
//3.将原始数据按照传入的分隔符进行切分
String[] fields = arg.split(splitKey);
//4.遍历切分后的结果,并写出
for (String field : fields) {
//集合为复用的,首先清空集合
outList.clear();
//将每一个单词添加至集合
outList.add(field);
//将集合内容写出
forward(outList);
}
}
public void close() throws HiveException {
}
}打成 jar 包上传到服务器/opt/module/hive/data/myudtf.jar
将 jar 包添加到 hive 的 classpath 下
1
hive (default)> add jar /opt/module/hive/data/myudtf.jar;
创建临时函数与开发好的 java class 关联
1
hive (default)> create temporary function myudtf as "top.lvxiaoyi.udtf.MyUDTF";
使用自定义的函数
1
hive (default)> select myudtf("hello,world,hadoop,hive",",");
压缩和存储
Hadoop 压缩配置
MR 支持的压缩编码
1 | 压缩格式 算法 文件扩展名 是否可切分 |
为了支持多种压缩/解压缩算法,Hadoop 引入了编码/解码器,如下表所示:
1 | 压缩格式 对应的编码/解码器 |
压缩性能的比较:
1 | 压缩算法 原始文件大小 压缩文件大小 压缩速度 解压速度 |
http://google.github.io/snappy/
On a single core of a Core i7 processor in 64-bit mode, Snappy compresses at about 250 MB/sec or more and decompresses at about 500 MB/sec or more.
压缩参数配置
要在 Hadoop 中启用压缩,可以配置如下参数(mapred-site.xml 文件中):
参数 | 默认值 | 阶段 | 建议 |
---|---|---|---|
io.compression.codecs (在 core-site.xml 中配置) | org.apache.hadoop.io.compress.DefaultCodec, org.apache.hadoop.io.compress.GzipCodec, org.apache.hadoop.io.compress.BZip2Codec, org.apache.hadoop.io.compress.Lz4Codec |
输入压缩 | Hadoop使用文件扩展名判断是否支持某种编解码器 |
mapreduce.map.output.compress | false | mapper 输出 | 这个参数设为 true 启用压缩 |
mapreduce.map.output.compress.codec | org.apache.hadoop.io.compress.DefaultCodec | mapper 输出 | 使用 LZO、LZ4 或snappy 编解码器在此阶段压缩数据 |
mapreduce.output.fileoutput format.compress |
false | reducer 输出 | 这个参数设为 true 启用压缩 |
mapreduce.output.fileoutput format.compress.codec |
org.apache.hadoop.io.compress. DefaultCodec | reducer 输出 | 使用标准工具或者编解码器,如 gzip 和bzip2 |
mapreduce.output.fileoutput format.compress.type |
RECORD | reducer 输出 | SequenceFile 输出使用的压缩类型:NONE和 BLOCK |
开启 Map 输出阶段压缩(MR 引擎)
开启 map 输出阶段压缩可以减少 job 中 map 和 Reduce task 间数据传输量。具体配置如下:
案例实操:
开启 hive 中间传输数据压缩功能
1
hive (default)>set hive.exec.compress.intermediate=true;
开启 mapreduce 中 map 输出压缩功能
1
hive (default)>set mapreduce.map.output.compress=true;
设置 mapreduce 中 map 输出数据的压缩方式
1
2hive (default)>set mapreduce.map.output.compress.codec=
org.apache.hadoop.io.compress.SnappyCodec;执行查询语句
1
hive (default)> select count(ename) name from emp;
开启 Reduce 输出阶段压缩
当 Hive 将 输 出 写 入 到 表 中 时 , 输出内容同样可以进行压缩。属性hive.exec.compress.output控制着这个功能。用户可能需要保持默认设置文件中的默认值false,这样默认的输出就是非压缩的纯文本文件了。用户可以通过在查询语句或执行脚本中设置这个值为 true,来开启输出结果压缩功能。
案例实操:
开启 hive 最终输出数据压缩功能
1
hive (default)>set hive.exec.compress.output=true;
开启 mapreduce 最终输出数据压缩
1
hive (default)>set mapreduce.output.fileoutputformat.compress=true;
设置 mapreduce 最终数据输出压缩方式
1
2hive (default)> set mapreduce.output.fileoutputformat.compress.codec =
org.apache.hadoop.io.compress.SnappyCodec;设置 mapreduce 最终数据输出压缩为块压缩
1
2hive (default)> set
mapreduce.output.fileoutputformat.compress.type=BLOCK;测试一下输出结果是否是压缩文件
1
2
3hive (default)> insert overwrite local directory
'/opt/module/data/distribute-result' select * from emp distribute by
deptno sort by empno desc;
文件存储格式
Hive 支持的存储数据的格式主要有:TEXTFILE 、SEQUENCEFILE、ORC、PARQUET。
列式存储和行式存储
如图所示左边为逻辑表,右边第一个为行式存储,第二个为列式存储
行存储的特点
查询满足条件的一整行数据的时候,列存储则需要去每个聚集的字段找到对应的每个列的值,行存储只需要找到其中一个值,其余的值都在相邻地方,所以此时行存储查询的速度更快。
列存储的特点
因为每个字段的数据聚集存储,在查询只需要少数几个字段的时候,能大大减少读取的数据量;每个字段的数据类型一定是相同的,列式存储可以针对性的设计更好的设计压缩算法。
TEXTFILE 和 SEQUENCEFILE 的存储格式都是基于行存储的;
ORC 和 PARQUET 是基于列式存储的。
TextFile 格式
默认格式,数据不做压缩,磁盘开销大,数据解析开销大。可结合 Gzip、Bzip2 使用,但使用 Gzip 这种方式,hive 不会对数据进行切分,从而无法对数据进行并行操作。
Orc 格式
Orc (Optimized Row Columnar)是 Hive 0.11 版里引入的新的存储格式。
如下图所示可以看到每个 Orc 文件由 1 个或多个 stripe 组成,每个 stripe 一般为 HDFS的块大小,每一个 stripe 包含多条记录,这些记录按照列进行独立存储,对应到 Parquet中的 row group 的概念。每个 Stripe 里有三部分组成,分别是 Index Data,Row Data,Stripe Footer:
- Index Data:一个轻量级的 index,默认是每隔 1W 行做一个索引。这里做的索引应该只是记录某行的各字段在 Row Data 中的 offset。
- Row Data:存的是具体的数据,先取部分行,然后对这些行按列进行存储。对每个列进行了编码,分成多个 Stream 来存储。
- Stripe Footer:存的是各个 Stream 的类型,长度等信息
每个文件有一个 File Footer,这里面存的是每个 Stripe 的行数,每个 Column 的数据类型信息等;每个文件的尾部是一个 PostScript,这里面记录了整个文件的压缩类型以及FileFooter 的长度信息等。在读取文件时,会 seek 到文件尾部读 PostScript,从里面解析到File Footer 长度,再读 FileFooter,从里面解析到各个 Stripe 信息,再读各个 Stripe,即从后往前读
Parquet 格式
Parquet 文件是以二进制方式存储的,所以是不可以直接读取的,文件中包括该文件的数据和元数据,因此 Parquet 格式文件是自解析的。
行组(Row Group):每一个行组包含一定的行数,在一个 HDFS 文件中至少存储一个行组,类似于 orc 的 stripe 的概念。
列块(Column Chunk):在一个行组中每一列保存在一个列块中,行组中的所有列连续的存储在这个行组文件中。一个列块中的值都是相同类型的,不同的列块可能使用不同的算法进行压缩。
页(Page):每一个列块划分为多个页,一个页是最小的编码的单位,在同一个列块的不同页可能使用不同的编码方式。
通常情况下,在存储 Parquet 数据的时候会按照 Block 大小设置行组的大小,由于一般情况下每一个 Mapper 任务处理数据的最小单位是一个 Block,这样可以把每一个行组由一个 Mapper 任务处理,增大任务执行并行度。Parquet 文件的格式
上图展示了一个 Parquet 文件的内容,一个文件中可以存储多个行组,文件的首位都是该文件的 Magic Code,用于校验它是否是一个 Parquet 文件,Footer length 记录了文件元数据的大小,通过该值和文件长度可以计算出元数据的偏移量,文件的元数据中包括每一个行组的元数据信息和该文件存储数据的 Schema 信息。除了文件中每一个行组的元数据,每一页的开始都会存储该页的元数据,在 Parquet 中,有三种类型的页:数据页、字典页和索引页。数据页用于存储当前行组中该列的值,字典页存储该列值的编码字典,每一个列块中最多包含一个字典页,索引页用来存储当前行组下该列的索引,目前 Parquet 中还不支持索引页。
主流文件存储格式对比实验
从存储文件的压缩比和查询速度两个角度对比。
存储文件的压缩比测试:
测试数据:log.data
TextFile
创建表,存储数据格式为 TEXTFILE
1
2
3
4
5
6
7
8
9
10
11create table log_text (
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as textfile;向表中加载数据
1
hive (default)> load data local inpath '/opt/module/hive/datas/log.data' into table log_text ;
查看表中数据大小
1
hive (default)> dfs -du -h /user/hive/warehouse/log_text;
18.13 M /user/hive/warehouse/log_text/log.data
ORC
创建表,存储数据格式为 ORC
1
2
3
4
5
6
7
8
9
10
11
12create table log_orc(
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as orc
tblproperties("orc.compress"="NONE"); -- 设置 orc 存储不使用压缩向表中加载数据
1
hive (default)> insert into table log_orc select * from log_text;
查看表中数据大小
1
hive (default)> dfs -du -h /user/hive/warehouse/log_orc/ ;
7.7 M /user/hive/warehouse/log_orc/000000_0
Parquet
创建表,存储数据格式为 parquet
1
2
3
4
5
6
7
8
9
10
11create table log_parquet(
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as parquet;向表中加载数据
1
hive (default)> insert into table log_parquet select * from log_text;
查看表中数据大小
1
hive (default)> dfs -du -h /user/hive/warehouse/log_parquet/;
13.1 M /user/hive/warehouse/log_parquet/000000_0
存储文件的对比总结:
ORC > Parquet > textFile
存储文件的查询速度测试:
TextFile
1
hive (default)> insert overwrite local directory '/opt/module/data/log_text' select substring(url,1,4) from log_text;
ORC
1
hive (default)> insert overwrite local directory '/opt/module/data/log_orc' select substring(url,1,4) from log_orc;
Parquet
1
hive (default)> insert overwrite local directory '/opt/module/data/log_parquet' select substring(url,1,4) from log_parquet;
存储文件的查询速度总结:查询速度相近。
存储和压缩结合
测试存储和压缩
官网:https://cwiki.apache.org/confluence/display/Hive/LanguageManual+ORC
ORC 存储方式的压缩:
Key | Default | Notes |
---|---|---|
orc.compress | ZLIB | high level compression (one of NONE, ZLIB, SNAPPY) |
orc.compress.size | 262,144 | number of bytes in each compression chunk |
orc.stripe.size | 268,435,456 | number of bytes in each stripeorc.row.index.stride 10,000 number of rows between index entries (must be >= 1000) |
orc.create.index | true | whether to create row indexes |
orc.bloom.filter.columns | “” | comma separated list of column names for which bloom filter should be created |
orc.bloom.filter.fpp | 0.05 | false positive probability for bloom filter (must >0.0 and <1.0) |
注意:所有关于 ORCFile 的参数都是在 HQL 语句的 TBLPROPERTIES 字段里面出现
创建一个 ZLIB 压缩的 ORC 存储方式
建表语句
1
2
3
4
5
6
7
8
9
10
11
12create table log_orc_zlib(
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as orc
tblproperties("orc.compress"="ZLIB");插入数据
1
insert into log_orc_zlib select * from log_text;
查看插入后数据
1
hive (default)> dfs -du -h /user/hive/warehouse/log_orc_zlib/ ;
2.78 M /user/hive/warehouse/log_orc_none/000000_0
创建一个 SNAPPY 压缩的 ORC 存储方式
建表语句
1
2
3
4
5
6
7
8
9
10
11
12create table log_orc_snappy(
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as orc
tblproperties("orc.compress"="SNAPPY");插入数据
1
insert into log_orc_snappy select * from log_text;
查看插入后数据
1
hive (default)> dfs -du -h /user/hive/warehouse/log_orc_snappy/;
3.75 M /user/hive/warehouse/log_orc_snappy/000000_0
ZLIB 比 Snappy 压缩的还小。原因是 ZLIB 采用的是 deflate 压缩算法。比 snappy 压缩的压缩率高。
创建一个 SNAPPY 压缩的 parquet 存储方式
建表语句
1
2
3
4
5
6
7
8
9
10
11
12create table log_parquet_snappy(
track_time string,
url string,
session_id string,
referer string,
ip string,
end_user_id string,
city_id string
)
row format delimited fields terminated by '\t'
stored as parquet
tblproperties("parquet.compression"="SNAPPY");插入数据
1
insert into log_parquet_snappy select * from log_text;
查看插入后数据
1
hive (default)> dfs -du -h /user/hive/warehouse/log_parquet_snappy/;
6.39 MB /user/hive/warehouse/ log_parquet_snappy /000000_0
存储方式和压缩总结
在实际的项目开发当中,hive 表的数据存储格式一般选择:orc 或 parquet。压缩方式一般选择 snappy,lzo。
企业级调优
执行计划(Explain)
基本语法
1
EXPLAIN [EXTENDED | DEPENDENCY | AUTHORIZATION] query
案例实操
查看下面这条语句的执行计划
没有生成 MR 任务的
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22hive (default)> explain select * from emp;
Explain
STAGE DEPENDENCIES:
Stage-0 is a root stage
STAGE PLANS:
Stage: Stage-0
Fetch Operator
limit: -1
Processor Tree:
TableScan
alias: emp
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
Select Operator
expressions: empno (type: int), ename (type: string), job
(type: string), mgr (type: int), hiredate (type: string), sal (type:
double), comm (type: double), deptno (type: int)
outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5,
_col6, _col7
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
ListSink有生成 MR 任务的
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63hive (default)> explain select deptno, avg(sal) avg_sal from emp group by
deptno;
Explain
STAGE DEPENDENCIES:
Stage-1 is a root stage
Stage-0 depends on stages: Stage-1
STAGE PLANS:
Stage: Stage-1
Map Reduce
Map Operator Tree:
TableScan
alias: emp
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
Select Operator
expressions: sal (type: double), deptno (type: int)
outputColumnNames: sal, deptno
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
Group By Operator
aggregations: sum(sal), count(sal)
keys: deptno (type: int)
mode: hash
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 1 Data size: 7020 Basic stats:
COMPLETE Column stats: NONE
Reduce Output Operator
key expressions: _col0 (type: int)
sort order: +
Map-reduce partition columns: _col0 (type: int)
Statistics: Num rows: 1 Data size: 7020 Basic stats:
COMPLETE Column stats: NONE
value expressions: _col1 (type: double), _col2 (type:
bigint)
Execution mode: vectorized
Reduce Operator Tree:
Group By Operator
aggregations: sum(VALUE._col0), count(VALUE._col1)
keys: KEY._col0 (type: int)
mode: mergepartial
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
Select Operator
expressions: _col0 (type: int), (_col1 / _col2) (type: double)
outputColumnNames: _col0, _col1
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
File Output Operator
compressed: false
Statistics: Num rows: 1 Data size: 7020 Basic stats: COMPLETE
Column stats: NONE
table:
input format:
org.apache.hadoop.mapred.SequenceFileInputFormat
output format:
org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
Stage: Stage-0
Fetch Operator
limit: -1
Processor Tree:
ListSink查看详细执行计划
1
2
3hive (default)> explain extended select * from emp;
hive (default)> explain extended select deptno, avg(sal) avg_sal from emp
group by deptno;
Fetch 抓取
Fetch 抓取是指,Hive 中对某些情况的查询可以不必使用 MapReduce 计算。例如:SELECT * FROM employees;在这种情况下,Hive 可以简单地读取 employee 对应的存储目录下的文件,然后输出查询结果到控制台。
在 hive-default.xml.template 文件中 hive.fetch.task.conversion 默认是 more,老版本 hive默认是 minimal,该属性修改为 more 以后,在全局查找、字段查找、limit 查找等都不走mapreduce。
1 | <property> |
案例实操:
把 hive.fetch.task.conversion 设置成 none,然后执行查询语句,都会执行 mapreduce程序
1
2
3
4hive (default)> set hive.fetch.task.conversion=none;
hive (default)> select * from emp;
hive (default)> select ename from emp;
hive (default)> select ename from emp limit 3;把 hive.fetch.task.conversion 设置成 more,然后执行查询语句,如下查询方式都不会执行 mapreduce 程序。
1
2
3
4hive (default)> set hive.fetch.task.conversion=more;
hive (default)> select * from emp;
hive (default)> select ename from emp;
hive (default)> select ename from emp limit 3
本地模式
大多数的 Hadoop Job 是需要 Hadoop 提供的完整的可扩展性来处理大数据集的。不过,有时 Hive 的输入数据量是非常小的。在这种情况下,为查询触发执行任务消耗的时间可能会比实际 job 的执行时间要多的多。对于大多数这种情况,Hive 可以通过本地模式在单台机器上处理所有的任务。对于小数据集,执行时间可以明显被缩短
用户可以通过设置 hive.exec.mode.local.auto 的值为 true,来让 Hive 在适当的时候自动启动这个优化。
1 | set hive.exec.mode.local.auto=true; //开启本地 mr |
案例实操:
开启本地模式,并执行查询语句
1
2hive (default)> set hive.exec.mode.local.auto=true;
hive (default)> select count(*) from emp group by deptno;关闭本地模式(默认是关闭的),并执行查询语句
1
hive (default)> select count(*) from emp group by deptno;
表的优化
小表大表 Join(MapJOIN)
将 key 相对分散,并且数据量小的表放在 join 的左边,可以使用 map join 让小的维度表先进内存。在 map 端完成 join。
实际测试发现:新版的 hive 已经对小表 JOIN 大表和大表 JOIN 小表进行了优化。小表放在左边和右边已经没有区别。
案例实操:
需求介绍
1
测试大表 JOIN 小表和小表 JOIN 大表的效率
开启 MapJoin 参数设置
设置自动选择 Mapjoin
1
set hive.auto.convert.join = true; 默认为 true
大表小表的阈值设置(默认 25M 以下认为是小表):
1
set hive.mapjoin.smalltable.filesize = 25000000;
MapJoin 工作机制
建大表、小表和 JOIN 后表的语句
1
2
3
4
5
6
7
8
9
10
11
12// 创建大表
create table bigtable(id bigint, t bigint, uid string, keyword string,
url_rank int, click_num int, click_url string) row format delimited
fields terminated by '\t';
// 创建小表
create table smalltable(id bigint, t bigint, uid string, keyword string,
url_rank int, click_num int, click_url string) row format delimited
fields terminated by '\t';
// 创建 join 后表的语句
create table jointable(id bigint, t bigint, uid string, keyword string,
url_rank int, click_num int, click_url string) row format delimited
fields terminated by '\t';分别向大表和小表中导入数据
1
2hive (default)> load data local inpath '/opt/module/data/bigtable' into table bigtable;
hive (default)>load data local inpath '/opt/module/data/smalltable' into table smalltable;小表 JOIN 大表语句
1
2
3
4
5insert overwrite table jointable
select b.id, b.t, b.uid, b.keyword, b.url_rank, b.click_num, b.click_url
from smalltable s
join bigtable b
on b.id = s.id;大表 JOIN 小表语句
1
2
3
4
5insert overwrite table jointable
select b.id, b.t, b.uid, b.keyword, b.url_rank, b.click_num, b.click_url
from bigtable b
join smalltable s
on s.id = b.id;
大表 Join 大表
空 KEY 过滤
有时 join 超时是因为某些 key 对应的数据太多,而相同 key 对应的数据都会发送到相同的 reducer 上,从而导致内存不够。此时我们应该仔细分析这些异常的 key,很多情况下,这些 key 对应的数据是异常数据,我们需要在 SQL 语句中进行过滤。例如 key 对应的字段为空,操作如下:
案例实操
配置历史服务器
配置 mapred-site.xml
1
2
3
4
5
6
7
8<property>
<name>mapreduce.jobhistory.address</name>
<value>hadoop102:10020</value>
</property>
<property>
<name>mapreduce.jobhistory.webapp.address</name>
<value>hadoop102:19888</value>
</property>启动历史服务器
1
sbin/mr-jobhistory-daemon.sh start historyserver
查看 jobhistory
创建原始数据空 id 表
1
2
3
4// 创建空 id 表
create table nullidtable(id bigint, t bigint, uid string, keyword string,
url_rank int, click_num int, click_url string) row format delimited
fields terminated by '\t';分别加载原始数据和空 id 数据到对应表中
1
2hive (default)> load data local inpath '/opt/module/data/nullid' into
table nullidtable;测试不过滤空 id
1
hive (default)> insert overwrite table jointable select n.* from nullidtable n left join bigtable o on n.id = o.id;
测试过滤空 id
1
hive (default)> insert overwrite table jointable select n.* from (select * from nullidtable where id is not null) n left join bigtable o on n.id = o.id;
空 key 转换
有时虽然某个 key 为空对应的数据很多,但是相应的数据不是异常数据,必须要包含在join 的结果中,此时我们可以表 a 中 key 为空的字段赋一个随机的值,使得数据随机均匀地分不到不同的 reducer 上。例如:
案例实操:
不随机分布空 null 值:
设置 5 个 reduce 个数
1
set mapreduce.job.reduces = 5;
JOIN 两张表
1
insert overwrite table jointable select n.* from nullidtable n left join bigtable b on n.id = b.id;
结果:如下图所示,可以看出来,出现了数据倾斜,某些 reducer 的资源消耗远大于其他 reducer。
随机分布空 null 值
设置 5 个 reduce 个数
1
set mapreduce.job.reduces = 5;
JOIN 两张表
1
insert overwrite table jointable select n.* from nullidtable n full join bigtable o on nvl(n.id,rand()) = o.id;
结果:如下图所示,可以看出来,消除了数据倾斜,负载均衡 reducer 的资源消耗
SMB(Sort Merge Bucket join)
创建第二张大表
1
2
3
4
5
6
7
8
9
10create table bigtable2(
id bigint,
t bigint,
uid string,
keyword string,
url_rank int,
click_num int,
click_url string)
row format delimited fields terminated by '\t';
load data local inpath '/opt/module/data/bigtable' into table bigtable2;测试大表直接 JOIN
1
2
3
4
5insert overwrite table jointable
select b.id, b.t, b.uid, b.keyword, b.url_rank, b.click_num, b.click_url
from bigtable s
join bigtable2 b
on b.id = s.id;创建分通表 1,桶的个数不要超过可用 CPU 的核数
1
2
3
4
5
6
7
8
9
10
11
12
13
14create table bigtable_buck1(
id bigint,
t bigint,
uid string,
keyword string,
url_rank int,
click_num int,
click_url string)
clustered by(id)
sorted by(id)
into 6 buckets
row format delimited fields terminated by '\t';
load data local inpath '/opt/module/data/bigtable' into table
bigtable_buck1;创建分通表 2,桶的个数不要超过可用 CPU 的核数
1
2
3
4
5
6
7
8
9
10
11
12
13
14create table bigtable_buck2(
id bigint,
t bigint,
uid string,
keyword string,
url_rank int,
click_num int,
click_url string)
clustered by(id)
sorted by(id)
into 6 buckets
row format delimited fields terminated by '\t';
load data local inpath '/opt/module/data/bigtable' into table
bigtable_buck2;设置参数
1
2
3
4set hive.optimize.bucketmapjoin = true;
set hive.optimize.bucketmapjoin.sortedmerge = true;
set
hive.input.format=org.apache.hadoop.hive.ql.io.BucketizedHiveInputFormat;测试
1
2
3
4
5insert overwrite table jointable
select b.id, b.t, b.uid, b.keyword, b.url_rank, b.click_num, b.click_url
from bigtable_buck1 s
join bigtable_buck2 b
on b.id = s.id;
Group By
默认情况下,Map 阶段同一 Key 数据分发给一个 reduce,当一个 key 数据过大时就倾斜了。
并不是所有的聚合操作都需要在 Reduce 端完成,很多聚合操作都可以先在 Map 端进行部分聚合,最后在 Reduce 端得出最终结果。
开启 Map 端聚合参数设置
是否在 Map 端进行聚合,默认为 True
1
set hive.map.aggr = true
在 Map 端进行聚合操作的条目数目
1
set hive.groupby.mapaggr.checkinterval = 100000
有数据倾斜的时候进行负载均衡(默认是 false)
1
set hive.groupby.skewindata = true
当选项设定为 true,生成的查询计划会有两个 MR Job。第一个 MR Job 中,Map 的输出结果会随机分布到 Reduce 中,每个 Reduce 做部分聚合操作,并输出结果,这样处理的结果是相同的 Group By Key 有可能被分发到不同的 Reduce 中,从而达到负载均衡的目的;第二个 MR Job 再根据预处理的数据结果按照 Group By Key 分布到 Reduce 中(这个过程可以保证相同的 Group By Key 被分布到同一个 Reduce 中),最后完成最终的聚合操作。
1
2
3
4
5
6
7
8
9hive (default)> select deptno from emp group by deptno;
Stage-Stage-1: Map: 1 Reduce: 5 Cumulative CPU: 23.68 sec HDFS Read:
19987 HDFS Write: 9 SUCCESS
Total MapReduce CPU Time Spent: 23 seconds 680 msec
OK
deptno
10
20
30优化以后
1
2
3
4
5
6
7
8
9
10
11
12hive (default)> set hive.groupby.skewindata = true;
hive (default)> select deptno from emp group by deptno;
Stage-Stage-1: Map: 1 Reduce: 5 Cumulative CPU: 28.53 sec HDFS Read:
18209 HDFS Write: 534 SUCCESS
Stage-Stage-2: Map: 1 Reduce: 5 Cumulative CPU: 38.32 sec HDFS Read:
15014 HDFS Write: 9 SUCCESS
Total MapReduce CPU Time Spent: 1 minutes 6 seconds 850 msec
OK
deptno
10
20
30
Count(Distinct) 去重统计
数据量小的时候无所谓,数据量大的情况下,由于 COUNT DISTINCT 操作需要用一个Reduce Task 来完成,这一个 Reduce 需要处理的数据量太大,就会导致整个 Job 很难完成,一般 COUNT DISTINCT 使用先 GROUP BY 再 COUNT 的方式替换,但是需要注意 group by 造成的数据倾斜问题.
案例实操
创建一张大表
1
2
3
4
5hive (default)> create table bigtable(id bigint, time bigint, uid string,
keyword
string, url_rank int, click_num int, click_url string) row format
delimited
fields terminated by '\t';加载数据
1
2hive (default)> load data local inpath '/opt/module/data/bigtable' into
table bigtable;设置 5 个 reduce 个数
1
set mapreduce.job.reduces = 5;
执行去重 id 查询
1
2
3
4
5
6
7
8hive (default)> select count(distinct id) from bigtable;
Stage-Stage-1: Map: 1 Reduce: 1 Cumulative CPU: 7.12 sec HDFS Read:
120741990 HDFS Write: 7 SUCCESS
Total MapReduce CPU Time Spent: 7 seconds 120 msec
OK
c0
100001
Time taken: 23.607 seconds, Fetched: 1 row(s)采用 GROUP by 去重 id
1
2
3
4
5
6
7
8
9
10
11hive (default)> select count(id) from (select id from bigtable group by
id) a;
Stage-Stage-1: Map: 1 Reduce: 5 Cumulative CPU: 17.53 sec HDFS Read:
120752703 HDFS Write: 580 SUCCESS
Stage-Stage-2: Map: 1 Reduce: 1 Cumulative CPU: 4.29 sec2 HDFS Read:
9409 HDFS Write: 7 SUCCESS
Total MapReduce CPU Time Spent: 21 seconds 820 msec
OK
_c0
100001
Time taken: 50.795 seconds, Fetched: 1 row(s)虽然会多用一个 Job 来完成,但在数据量大的情况下,这个绝对是值得的。
笛卡尔积
尽量避免笛卡尔积,join 的时候不加 on 条件,或者无效的 on 条件,Hive 只能使用 1 个reducer 来完成笛卡尔积。
行列过滤
列处理:在 SELECT 中,只拿需要的列,如果有分区,尽量使用分区过滤,少用 SELECT *。
行处理:在分区剪裁中,当使用外关联时,如果将副表的过滤条件写在 Where 后面,那么就会先全表关联,之后再过滤,比如:
案例实操:
测试先关联两张表,再用 where 条件过滤
1
2
3hive (default)> select o.id from bigtable b
join bigtable o on o.id = b.id
where o.id <= 10;Time taken: 34.406 seconds, Fetched: 100 row(s)
通过子查询后,再关联表(谓词下推)
1
2hive (default)> select b.id from bigtable b
join (select id from bigtable where id <= 10) o on b.id = o.id;Time taken: 30.058 seconds, Fetched: 100 row(s)
ql执行顺序
1 | 1、FORM: 对FROM左边的表和右边的表计算笛卡尔积,产生虚表VT1。 |
分区
分桶
看上面章节
合理设置 Map 及 Reduce 数
通常情况下,作业会通过 input 的目录产生一个或者多个 map 任务。
主要的决定因素有:input 的文件总个数,input 的文件大小,集群设置的文件块大小。
是不是 map 数越多越好?
答案是否定的。如果一个任务有很多小文件(远远小于块大小 128m),则每个小文件也会被当做一个块,用一个 map 任务来完成,而一个 map 任务启动和初始化的时间远远大于逻辑处理的时间,就会造成很大的资源浪费。而且,同时可执行的 map 数是受限的。
是不是保证每个 map 处理接近 128m 的文件块,就高枕无忧了?
答案也是不一定。比如有一个 127m 的文件,正常会用一个 map 去完成,但这个文件只有一个或者两个小字段,却有几千万的记录,如果 map 处理的逻辑比较复杂,用一个 map任务去做,肯定也比较耗时。
针对上面的问题 2 和 3,我们需要采取两种方式来解决:即减少 map 数和增加 map 数;
复杂文件增加 Map 数
当 input 的文件都很大,任务逻辑复杂,map 执行非常慢的时候,可以考虑增加 Map 数,来使得每个 map 处理的数据量减少,从而提高任务的执行效率。
增加 map 的方法为:根据computeSliteSize(Math.max(minSize,Math.min(maxSize,blocksize)))=blocksize=128M 公式,调整 maxSize 最大值。让 maxSize 最大值低于 blocksize 就可以增加 map 的个数。
案例实操:
执行查询
1
2
3hive (default)> select count(*) from emp;
Hadoop job information for Stage-1: number of mappers: 1; number of
reducers: 1设置最大切片值为 100 个字节
1
2
3
4hive (default)> set mapreduce.input.fileinputformat.split.maxsize=100;
hive (default)> select count(*) from emp;
Hadoop job information for Stage-1: number of mappers: 6; number of
reducers: 1
小文件进行合并
在 map 执行前合并小文件,减少 map 数:CombineHiveInputFormat 具有对小文件进行合并的功能(系统默认的格式)。HiveInputFormat 没有对小文件合并功能。
1
set hive.input.format= org.apache.hadoop.hive.ql.io.CombineHiveInputFormat;
在 Map-Reduce 的任务结束时合并小文件的设置:
在 map-only 任务结束时合并小文件,默认 true
1
SET hive.merge.mapfiles = true;
在 map-reduce 任务结束时合并小文件,默认 false
1
SET hive.merge.mapredfiles = true;
合并文件的大小,默认 256M
1
SET hive.merge.size.per.task = 268435456;
当输出文件的平均大小小于该值时,启动一个独立的 map-reduce 任务进行文件 merge
1
SET hive.merge.smallfiles.avgsize = 16777216;
合理设置 Reduce 数
方法一
每个 Reduce 处理的数据量默认是 256MB
1
hive.exec.reducers.bytes.per.reducer=256000000
每个任务最大的 reduce 数,默认为 1009
1
hive.exec.reducers.max=1009
计算 reducer 数的公式
1
N=min(参数 2,总输入数据量/参数 1)
方法二
在 hadoop 的 mapred-default.xml 文件中修改
设置每个 job 的 Reduce 个数
1 | set mapreduce.job.reduces = 15; |
reduce 个数并不是越多越好
- 过多的启动和初始化 reduce 也会消耗时间和资源;
- 另外,有多少个 reduce,就会有多少个输出文件,如果生成了很多个小文件,那么如果这些小文件作为下一个任务的输入,则也会出现小文件过多的问题;
在设置 reduce 个数的时候也需要考虑这两个原则:处理大数据量利用合适的 reduce 数;使单个 reduce 任务处理数据量大小要合适;
并行执行
Hive 会将一个查询转化成一个或者多个阶段。这样的阶段可以是 MapReduce 阶段、抽样阶段、合并阶段、limit 阶段。或者 Hive 执行过程中可能需要的其他阶段。默认情况下,Hive 一次只会执行一个阶段。不过,某个特定的 job 可能包含众多的阶段,而这些阶段可能并非完全互相依赖的,也就是说有些阶段是可以并行执行的,这样可能使得整个 job 的执行时间缩短。不过,如果有更多的阶段可以并行执行,那么 job 可能就越快完成。
通过设置参数 hive.exec.parallel 值为 true,就可以开启并发执行。不过,在共享集群中,需要注意下,如果 job 中并行阶段增多,那么集群利用率就会增加。
1 | set hive.exec.parallel=true; //打开任务并行执行 |
当然,得是在系统资源比较空闲的时候才有优势,否则,没资源,并行也起不来。
严格模式
Hive 可以通过设置防止一些危险操作:
分区表不使用分区过滤
将 hive.strict.checks.no.partition.filter 设置为 true 时,对于分区表,除非 where 语句中含有分区字段过滤条件来限制范围,否则不允许执行。换句话说,就是用户不允许扫描所有分区。进行这个限制的原因是,通常分区表都拥有非常大的数据集,而且数据增加迅速。没有
进行分区限制的查询可能会消耗令人不可接受的巨大资源来处理这个表。使用 order by 没有 limit 过滤
将 hive.strict.checks.orderby.no.limit 设置为 true 时,对于使用了 order by 语句的查询,要求必须使用 limit 语句。因为 order by 为了执行排序过程会将所有的结果数据分发到同一个Reducer 中进行处理,强制要求用户增加这个 LIMIT 语句可以防止 Reducer 额外执行很长一段时间。
笛卡尔积
将 hive.strict.checks.cartesian.product 设置为 true 时,会限制笛卡尔积的查询。对关系型数据库非常了解的用户可能期望在 执行 JOIN 查询的时候不使用 ON 语句而是使用 where 语句,这样关系数据库的执行优化器就可以高效地将 WHERE 语句转化成那个 ON 语句。不幸的是,Hive 并不会执行这种优化,因此,如果表足够大,那么这个查询就会出现不可控的情况。
JVM 重用
看hadoop中的jvm重用
压缩
看上面的压缩和存储章节
Hive 实战
需求描述
统计硅谷影音视频网站的常规指标,各种 TopN 指标:
– 统计视频观看数 Top10
– 统计视频类别热度 Top10
– 统计出视频观看数最高的 20 个视频的所属类别以及类别包含 Top20 视频的个数
– 统计视频观看数 Top50 所关联视频的所属类别排序
– 统计每个类别中的视频热度 Top10,以 Music 为例
– 统计每个类别视频观看数 Top10
– 统计上传视频最多的用户 Top10 以及他们上传的视频观看次数在前 20 的视频
数据结构
视频表
1
2
3
4
5
6
7
8
9
10
11字段 备注 详细描述
videoId 视频唯一 id(String) 11 位字符串
uploader 视频上传者(String) 上传视频的用户名 String
age 视频年龄(int) 视频在平台上的整数天
category 视频类别(Array<String>) 上传视频指定的视频分类
length 视频长度(Int) 整形数字标识的视频长度
views 观看次数(Int) 视频被浏览的次数
rate 视频评分(Double) 满分 5 分
Ratings 流量(Int) 视频的流量,整型数字
conments 评论数(Int) 一个视频的整数评论数
relatedId 相关视频 id(Array<String>) 相关视频的 id,最多 20 个用户表
1
2
3
4字段 备注 字段类型
uploader 上传者用户名 string
videos 上传视频数 int
friends 朋友数量 int
准备工作
准备表
需要准备的表
创建原始数据表:gulivideo_ori,gulivideo_user_ori,
创建最终表:gulivideo_orc,gulivideo_user_orc
创建原始数据表:
gulivideo_ori
1
2
3
4
5
6
7
8
9
10
11
12
13
14create table gulivideo_ori(
videoId string,
uploader string,
age int,
category array<string>,
length int,
views int,
rate float,
ratings int,
comments int,
relatedId array<string>)
row format delimited fields terminated by "\t"
collection items terminated by "&"
stored as textfile;创建原始数据表: gulivideo_user_ori
1
2
3
4
5
6
7create table gulivideo_user_ori(
uploader string,
videos int,
friends int)
row format delimited
fields terminated by "\t"
stored as textfile;
创建 orc 存储格式带 snappy 压缩的表:
gulivideo_orc
1
2
3
4
5
6
7
8
9
10
11
12
13create table gulivideo_orc(
videoId string,
uploader string,
age int,
category array<string>,
length int,
views int,
rate float,
ratings int,
comments int,
relatedId array<string>)
stored as orc
tblproperties("orc.compress"="SNAPPY");gulivideo_user_orc
1
2
3
4
5
6
7
8create table gulivideo_user_orc(
uploader string,
videos int,
friends int)
row format delimited
fields terminated by "\t"
stored as orc
tblproperties("orc.compress"="SNAPPY");向 ori 表插入数据
1
2load data local inpath "/opt/module/data/video" into table gulivideo_ori;
load data local inpath "/opt/module/user" into table gulivideo_user_ori;向 orc 表插入数据
1
2insert into table gulivideo_orc select * from gulivideo_ori;
insert into table gulivideo_user_orc select * from gulivideo_user_ori;
安装 Tez 引擎(了解)
Tez 是一个 Hive 的运行引擎,性能优于 MR。为什么优于 MR 呢?看下。
用 Hive 直接编写 MR 程序,假设有四个有依赖关系的 MR 作业,上图中,绿色是 ReduceTask,云状表示写屏蔽,需要将中间结果持久化写到 HDFS。
Tez 可以将多个有依赖的作业转换为一个作业,这样只需写一次 HDFS,且中间节点较少,从而大大提升作业的计算性能。
将 tez 安装包拷贝到集群,并解压 tar 包
1
2[atguigu@hadoop102 software]$ mkdir /opt/module/tez
[atguigu@hadoop102 software]$ tar -zxvf /opt/software/tez-0.10.1-SNAPSHOT-minimal.tar.gz -C /opt/module/tez上传 tez 依赖到 HDFS
1
2[atguigu@hadoop102 software]$ hadoop fs -mkdir /tez
[atguigu@hadoop102 software]$ hadoop fs -put /opt/software/tez-0.10.1-SNAPSHOT.tar.gz /tez新建 tez-site.xml
1
[atguigu@hadoop102 software]$ vim $HADOOP_HOME/etc/hadoop/tez-site.xml
添加如下内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<configuration>
<property>
<name>tez.lib.uris</name>
<value>${fs.defaultFS}/tez/tez-0.10.1-SNAPSHOT.tar.gz</value>
</property>
<property>
<name>tez.use.cluster.hadoop-libs</name>
<value>true</value>
</property>
<property>
<name>tez.am.resource.memory.mb</name>
<value>1024</value>
</property>
<property>
<name>tez.am.resource.cpu.vcores</name>
<value>1</value>
</property>
<property>
<name>tez.container.max.java.heap.fraction</name>
<value>0.4</value>
</property>
<property>
<name>tez.task.resource.memory.mb</name>
<value>1024</value>
</property>
<property>
<name>tez.task.resource.cpu.vcores</name>
<value>1</value>
</property>
</configuration>修改 Hadoop 环境变量
1
[atguigu@hadoop102 software]$ vim $HADOOP_HOME/etc/hadoop/shellprofile.d/tez.sh
添加 Tez 的 Jar 包相关信息
1
2
3
4
5
6
7hadoop_add_profile tez
function _tez_hadoop_classpath
{
hadoop_add_classpath "$HADOOP_HOME/etc/hadoop" after
hadoop_add_classpath "/opt/module/tez/*" after
hadoop_add_classpath "/opt/module/tez/lib/*" after
}修改 Hive 的计算引擎
1
[atguigu@hadoop102 software]$ vim $HIVE_HOME/conf/hive-site.xml
添加
1
2
3
4
5
6
7
8<property>
<name>hive.execution.engine</name>
<value>tez</value>
</property>
<property>
<name>hive.tez.container.size</name>
<value>1024</value>
</property>解决日志 Jar 包冲突
1
[atguigu@hadoop102 software]$ rm /opt/module/tez/lib/slf4j-log4j12-1.7.10.jar
业务分析
统计视频观看数 Top10
思路:使用 order by 按照 views 字段做一个全局排序即可,同时我们设置只显示前 10条。
最终代码:
1 | select |
统计视频类别热度 Top10
思路:
即统计每个类别有多少个视频,显示出包含视频最多的前 10 个类别。
1
2
3SELECT videoId,category_name
FROM gulivideo_orc
lateral view explode(category) category_t as category_name; t1我们需要按照类别 group by 聚合,然后 count 组内的 videoId 个数即可。
1
因为当前表结构为:一个视频对应一个或多个类别。所以如果要 group by 类别,需要先将类别进行列转行(展开),然后再进行 count 即可。
最后按照热度排序,显示前 10 条。
最终代码
1 | select |
统计出视频观看数最高的 20 个视频的所属类别以及类别包含Top20 视频的个数
思路:
先找到观看数最高的 20 个视频所属条目的所有信息,降序排列
1
2
3
4
5
6
7SELECT
videoId,views,category
FROM
gulivideo_orc
ORDER BY
views DESC
LIMIT 20;t1把这 20 条信息中的 category 分裂出来(列转行)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15SELECT
distinct(category_name)
FROM
(
SELECT
videoId,
views,
category
FROM
gulivideo_orc
ORDER BY
views DESC
LIMIT 20
) t1 lateral VIEW explode (category) category_t AS category_name;
t2最后查询视频分类名称和该分类下有多少个 Top20 的视频
最终代码:
1 | select |
统计视频观看数 Top50 所关联视频的所属类别排序
查询出观看数最多的前50个视频的所有信息(当然包含了每个视频对应的关联视频),记为临时表t1
t1:观看数前50的视频
1
2
3
4
5
6
7
8
9select
relatedId,
views
from
gulivideo_orc
order by
views
desc limit
50;t1将找到的50条视频信息的相关视频relatedId列转行,记为临时表t2
t2:将相关视频的id进行列转行操作
1
2
3
4select
explode(relatedId) as videoId
from
t1;t2join原表,取出关联视频所属类别
1
2
3
4
5
6select
g.category
from
t2
join gulivideo_orc g
on t2.related_id = g.videoId;t3炸裂类别字段
1
2
3
4select
explode(category) category_name
from
t3;t4按照类别分组,求count,并排序
1
2
3
4
5
6
7select
category_name,
count(*) ct
from
t4
group by category name
order by ct desc;
最终代码:
1 | select |
统计每个类别中的视频热度 Top10,以 Music 为例
思路:
要想统计 Music 类别中的视频热度 Top10,需要先找到 Music 类别,那么就需要将category 展开,所以可以创建一张表用于存放 categoryId 展开的数据。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15create table gulivideo_category(
videoId string,
uploader string,
age int,
categoryId string,
length int,
views int,
rate float,
ratings int,
comments int,
relatedId array<string>)
row format delimited
fields terminated by "\t"
collection items terminated by "&"
stored as orc;向 category 展开的表中插入数据。
1
2
3
4
5
6
7
8
9
10
11
12
13
14insert into table gulivideo_category
select
videoId,
uploader,
age,
categoryId,
length,
views,
rate,
ratings,
comments,
relatedId
from
gulivideo_orc lateral view explode(category) catetory as categoryId;统计对应类别(Music)中的视频热度。
1
2
3
4
5
6
7
8
9
10
11
12select
videoId,
views
from
gulivideo_category
where
categoryId = "Music"
order by
views
desc limit
10;
统计 Music 类别的 Top10(也可以统计其他)
1 | SELECT |
统计每个类别视频观看数 Top10
思路:
求出每个类别视频观看数排名
1
2
3
4
5
6select
category,
videoId,
views,
rank() over(partition by category order by views desc) rk
from gulivideo_orc_category;t1取出前10名
1
2
3
4
5
6select
category,
videoId,
from
t1
where rk<=10;
最终代码:
1 | SELECT |
统计上传视频最多的用户 Top10以及他们上传的视频观看次数在前 20 的视频
思路:
求出上传视频最多的 10 个用户
1
2
3
4
5
6
7
8select
*
from
gulivideo_user_orc
order by
videos
desc limit
10;关联 gulivideo_orc 表,求出这 10 个用户上传的所有的视频,按照观看数取前 20
最终代码:
1 | select |
附录:常见错误及解决方案
如果更换 Tez 引擎后,执行任务卡住,可以尝试调节容量调度器的资源调度策略
将$HADOOP_HOME/etc/hadoop/capacity-scheduler.xml 文件中的
1
2
3
4
5
6
7
8
9<property>
<name>yarn.scheduler.capacity.maximum-am-resource-percent</name>
<value>0.1</value>
<description>
Maximum percent of resources in the cluster which can be used to run
application masters i.e. controls number of concurrent running
applications.
</description>
</property>改成
1
2
3
4
5
6
7
8
9<property>
<name>yarn.scheduler.capacity.maximum-am-resource-percent</name>
<value>1</value>
<description>
Maximum percent of resources in the cluster which can be used to run
application masters i.e. controls number of concurrent running
applications.
</description>
</property>连接不上 mysql 数据库
- 导错驱动包,应该把 mysql-connector-java-5.1.27-bin.jar 导入/opt/module/hive/lib 的不是这个包。错把 mysql-connector-java-5.1.27.tar.gz 导入 hive/lib 包下。
- 修改 user 表中的主机名称没有都修改为%,而是修改为 localhost
hive 默认的输入格式处理是 CombineHiveInputFormat,会对小文件进行合并。
1
2hive (default)> set hive.input.format;
hive.input.format=org.apache.hadoop.hive.ql.io.CombineHiveInputFormat可以采用 HiveInputFormat 就会根据分区数输出相应的文件。
1
2hive (default)> set
hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat;不能执行 mapreduce 程序
可能是 hadoop 的 yarn 没开启。
启动 mysql 服务时,报 MySQL server PID file could not be found! 异常。
在/var/lock/subsys/mysql 路径下创建 hadoop102.pid,并在文件中添加内容:4396
报 service mysql status MySQL is not running, but lock file (/var/lock/subsys/mysql[失败])异 常
解决方案:在/var/lib/mysql 目录下创建: -rw-rw—-. 1 mysql mysql 5 12 月 22
16:41 hadoop102.pid 文件,并修改权限为 777。
JVM 堆内存溢出
描述:java.lang.OutOfMemoryError: Java heap space
解决:在 yarn-site.xml 中加入如下代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16<property>
<name>yarn.scheduler.maximum-allocation-mb</name>
<value>2048</value>
</property>
<property>
<name>yarn.scheduler.minimum-allocation-mb</name>
<value>2048</value>
</property>
<property>
<name>yarn.nodemanager.vmem-pmem-ratio</name>
<value>2.1</value>
</property>
<property>
<name>mapred.child.java.opts</name>
<value>-Xmx1024m</value>
</property>虚拟内存限制
在 yarn-site.xml 中添加如下配置:
1
2
3
4<property>
<name>yarn.nodemanager.vmem-check-enabled</name>
<value>false</value>
</property>