我可以不吃啊 发表于 2024-9-4 00:12:14

HIVE 数据仓库工具之第二部分(数据库相关操作)

一、Hive 对数据库的操作

1.1 创建数据库

Hive安装乐成之后会存在一个默认的数据库default,为了方便管理不同业务数据,需要单独创建新的数据库
1.1.1 创建数据库语法

CREATE(DATABASE|SCHEMA) database_name


;
SCHEMA 和 DATABASE:两者寄义雷同,用途一样。
IF NOT EXISTS:创建数据库时若有同名数据库存在,缺少该子句将抛出错误信息。
COMMENT:表现为数据库添加形貌信息。
LOCATION:存放数据库数据目录。
WITH DBPROPERTIES:表现为数据库添加形貌信息,如创建时间、作者等信息。
1.1.3 示例

创建名为weather的数据库,详细操作如图所示。
create database if not exists weather comment "天气数据库" location "/user/hive/warehouse/mydb" with dbproperties('creator'='langbo','date'='2024-08-28');
https://i-blog.csdnimg.cn/direct/f6618a2c7121463d815815f36e291c8c.png
通过describe命令检察已建数据库的详情,详细操作如图所示。
hive> describe database extended weather;
https://i-blog.csdnimg.cn/direct/7c87ea2d283e4e75a89afbeedebbc4fc.png
1.2 使用数据库

在Hive中可以根据不同的业务创建不同数据库,如果想对某个业务的数据进行操作,起首需要使用或者进入该数据库。
1.2.1 使用数据库语法

USE database_name;
使用数据库子句寄义表明如下:
USE:如果想使用哪个数据库,直接使用USE关键字即可。
1.2.2 示例

使用已经创建的数据库weather,详细操作如下:
hive> user weather;
https://i-blog.csdnimg.cn/direct/307ce4d4a3214392839144569a7a3f9d.png
检察当前使用的是哪个数据库
hive> select current_database();

https://i-blog.csdnimg.cn/direct/a6856f21f0bb45c89173ac23758eb8ea.png
1.3 修改数据库

如果创建数据库时某些信息设置的不正确,还可以对已创建的数据库进行修改。
1.3.1 修改数据库的语法

ALTER (DATABASE|SCHEMA) database_name
SET DBPROPERTIES (property_name=property_value, ...);

修改数据库子句寄义表明如下:
ALTER:如果想修改哪个数据库,直接使用ALTER关键字即可。
SET DBPROPERTIES:表现可以修改数据库键值对形貌信息。
1.3.2 示例

修改weather数据库的创建日期,详细操作如下。
hive> alter database weather set DBPROPERTIES('date'='2024-08-29');

https://i-blog.csdnimg.cn/direct/ad00592bcac44c068079666754fb6156.png
备注:Hive2.3.8以下版本只支持修改数据库形貌信息,不支持修改包括数据库名称和数据存储路径等信息。
1.4 删除数据库

如果某个数据库中的数据是过期或者无用数据,可以直接删除该数据库即可。
1.4.1 删除数据库的语法

DROP (DATABASE|SCHEMA) database_name ;
删除数据库子句寄义表明如下:
IF EXISTS:如果不加此选项,删除不存在的库会报错。
RESTRICT:表现如果数据库中包含有表,删除数据库操作将失败。
CASCADE:表现如果想删除包含有表的数据库,需要加上该关键字。
1.4.2 示例

在weather数据库中创建一个temperature表,详细操作如下:
hive> create table if not exists temperature (id string, year string, temperature int);

https://i-blog.csdnimg.cn/direct/5bc56957ed17419e918ce9e24275aa3f.png
删除包含temperature表的weather数据库,需要加上cascade关键字否则会报错,详细操作如下:
hive> drop database if exists weather cascade;

https://i-blog.csdnimg.cn/direct/f56a723feb804f1d8ae4fad0858eeca9.png
二、Hive 对数据表的操作

2.1 创建表

2.1.1 第一种建表方式

Hive的第一种建表方式,我们就采用类关系型数据库的建表标准方式。


[*]语法
CREATE TABLE table_name      
[(col_name data_type , ...)]
   




Hive建表子句寄义表明如下:
EXTERNAL:加上该子句,表现创建外部表。
ROW FORMAT:可以指定表存储中各列的分隔符,默认为\001。
STORED AS:可以指定数据存储格式,默认值为TEXTFILE。
LOCATION:指定hive表中的数据在hdfs上的存储路径。


[*]示例
在weather数据库中创建一个temperature表,该表存储的是美国各个气象站每年的气温值,详细操作如下:
createtableif not exists temperature
(id string comment '气象站id',year string comment '年',temperature int comment '气温')
comment '天气表'
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE ;

https://i-blog.csdnimg.cn/direct/120bdee1c2b741b998f4612cc4b87784.png
在weather数据库中创建一个station表,该表存储的是美国各气象站的详细信息,详细操作如图7-13所示。
createtableif not exists station
(id string comment '气象站id',latitude string comment '纬度',
longitude string comment '经度',elevation string comment '海拔',
state string comment '各州编码')
comment '气象站表'
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE ;

https://i-blog.csdnimg.cn/direct/83d8697462e64560835a517f6daed7e4.png
2.1.2 第二种建表方式

还可以使用select语句查询已有表来创建新表temperature2,详细操作如图7-14所示。
create table temperature2 as select * from temperature ;
hive> create table temperature2 as select * from temperature;

https://i-blog.csdnimg.cn/direct/18ee1378936141cf9d8d7e56920333f0.png
2.1.3 第三种建表方式

别的Hive还支持使用like语句创建新表temperature3,详细操作如图7-15所示。
hive> create table temperature3 like temperature;

https://i-blog.csdnimg.cn/direct/cda9d97a38af4632bcce7fa5ec917011.png
2.2 检察表

2.2.1 检察所有表

使用show命令检察所有已经创建的表,详细操作如下:
hive> show tables;

https://i-blog.csdnimg.cn/direct/aea3e3d6db9d4edd83367d6b96da7e90.png
2.2.2 检察特定表

通过匹配表达式检察特定表集合,详细操作如下:
hive> show tables 'temperature';

https://i-blog.csdnimg.cn/direct/d847c68a377f4cfa9f73dccb7e3c0684.png
2.2.3 检察表字段信息

通过describe命令检察temperature表字段信息,详细操作如下:
hive> describe temperature;

https://i-blog.csdnimg.cn/direct/59708f7ec0fb4dbaa8c816a9971e4e0e.png
2.3 修改表

如果建表时某些信息设置的不正确或者有遗漏,还可以对已创建的表进行修改。


[*]语法
ALTER TABLE name RENAME TO new_name
ALTER TABLE name REPLACE COLUMNS (col_spec[, col_spec ...])
ALTER TABLE name ADD COLUMNS (col_spec[, col_spec ...])

修改表子句的寄义表明如下:
Rename To语句:表现修改表名称。
REPLACE语句:表现删除表中原有的字段,替换为现有的字段。
ADD语句:表现为表增加新字段。


[*]示例
使用Rename To语句将temperature2的表名修改为temperature_2,详细操作如下:
hive> ALTER TABLE temperature2 RENAME TO temperature_2;

https://i-blog.csdnimg.cn/direct/ba3ce4a61e814df2b5f0f48bc731fc3c.png
使用REPLACE语句替换temperature_2表中的所有字段,详细操作如下:
hive> ALTER TABLE temperature_2 REPLACE COLUMNS (stationID string, year string, temperature int);

https://i-blog.csdnimg.cn/direct/13e342afd2cc49da8a880f304afc9d34.png
使用ADD语句为temperature_2表增加新字段name,详细操作如下:
hive> ALTER TABLE temperature_2 ADD COLUMNS (name string comment '气象站名称');

https://i-blog.csdnimg.cn/direct/005e93b04e06420a974430bf1201bd1e.png
2.4 删除表

如果某个表中的数据是过期或者无用数据,可以直接删除该表即可。


[*]语法
drop table if exists table_name;
删除表子句寄义表明如下:
drop:表现删除表的关键字。
if exists:表现如果表存在才删除,如果不存在可以不做任何操作。


[*]示例
使用drop语句删除temperature_2表,详细操作如下:
hive> drop table if exists temperature_2;
https://i-blog.csdnimg.cn/direct/8cee8d873109470eb831494644233ac6.png
三、Hive 数据相关操作

3.1 数据导入

数据导入Hive表的方式有很多种。可以使用load data操作,通过把文件复制或移动到表的目录中,从而把数据导入Hive的表中。也可以用Insert 语句把数据从一个Hive表添补到别的一个表,或者在新建表的时候使用CTAS(CREATE TABLE …AS SELECT)布局。
3.1.1 第一种导入方式

直接通过Insert语句将数据插入表,详细操作如下:
hive> insert into temperature values ('03013', '2021', 38);

https://i-blog.csdnimg.cn/direct/ba075b8c74794872969a585557719232.png
由图可以看出,通过Insert方式往表插入数据,底层实行的是MapReduce作业。
3.1.2 第二种导入方式



[*]准备数据集
现在准备一个名为temperature.log文件,内里包含美国各个气象站每年的气温数据,数据的第一列为气象站ID,第二列为年份,第三列为气温值。详细样本数据如下所示:
03103,1980,41
03103,1981,98
03103,1982,70
03103,1983,74
03103,1984,77
再准备一个名为station.log文件,内里包含美国各个气象站的详细信息,数据的第一列为气象站ID,第二列为纬度,第三列为经度,第四列为海拔,第五列为州编码。详细样本数据如下所示:
03013,38.0700,102.6881,1129.0,CO
03016,39.5264,107.7264,1685.5,CO
03017,39.8328,104.6575,1650.2,CO
03024,35.6950,101.3950,930.9,TX
03026,39.2447,102.2842,1277.7,CO
然后将temperature.log和station.log文件上传至hadoop1节点的/usr/local/data/tmp目录下。


[*]数据上传至HDFS
起首在HDFS中创建/weather目录,然后将temperature.log和station.log文件上传至该目录下,详细操作如下:
# /usr/local/hadoop/bin/hdfs dfs-mkdir /weather
# /usr/local/hadoop/bin/hdfs dfs-put /usr/local/data/tmp/temperature.log /weather
# /usr/local/hadoop/bin/hdfs dfs-put /usr/local/data/tmp/station.log /weathe
https://i-blog.csdnimg.cn/direct/bbd59306501a4c10ae5a35b3513ff7cb.png


[*]数据导入
通过load data命令将HDFS中的temperature.log和station.log文件分别加载到temperature和station表,详细操作如下:
hive> load data inpath '/weather/temperature.log' overwrite into table temperature;
hive> load data inpath '/weather/station.log' overwrite into table station;

https://i-blog.csdnimg.cn/direct/0267a274e838450e9dc724bd93656bc1.png
如果将当地文件加载到Hive表中,可以使用如下语句:
hive> load data local inpath '/usr/local/data/tmp/temperature.log' overwrite into table tempera
hive> load data local inpath '/usr/local/data/tmp/station.log' overwrite into table station;

https://i-blog.csdnimg.cn/direct/b590de8cb665464e8f52870bedbe728d.png
3.1.3 第三种导入方式

通过like子句创建表temperature6,然后使用select子句查询temperature表数据并插入temperature6,详细操作如下:
hive> create table temperature6 like temperature;
hive> insert into temperature6select * from temperature;

https://i-blog.csdnimg.cn/direct/3eca6c0417c94471814b5e11ec5a4605.png
3.1.4 第四种导入方式



[*]建表
通过create方式创建表temperature3,并指定表的HDFS路径,详细操作如图7-27所示。
createtableif not exists temperature4
(id string comment '气象站id',year string comment '年',temperature int comment '气温')
comment '天气表'
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE
location '/user/hive/warehouse/mydb/temperature4';

https://i-blog.csdnimg.cn/direct/ca0c1ec536f841ec8fe9c1f34c329778.png


[*]加载数据
通过HDFS的put命令,将当地文件上传至temperature3表的location位置即可完成表的数据加载,详细操作如下:
# /usr/local/hadoop/bin/hdfs dfs -put /usr/local/data/tmp/temperature.log /user/hive/warehouse/mydb/temperature4

https://i-blog.csdnimg.cn/direct/f424042f196b4cfab58ad1524fbf36d8.png


[*]表查询
通过select语句查询temperature3表中的数据,详细操作如下:
hive> select * from temperature4;

https://i-blog.csdnimg.cn/direct/7d08ffa744c14d4398e25ad07f2bbc9d.png
3.2数据导出

数据导出Hive表的方式也有很多种。可以使用Insert语句把数据从Hive表中导出到当地文件体系或者HDFS,也可以使用CTAS布局将一个Hive表中的数据导出到别的一个表。
3.2.1 第一种导出方式

使用INSERT OVERWRITE LOCAL DIRECTORY语句将temperature表中的数据导出到当地文件体系,详细操作如下:
hive>INSERT OVERWRITE LOCAL DIRECTORY '/usr/local/data/tmp/temperature.log.20240830' ROW FORMAT DELIMITED FIELDS TERMINATED by ',' select * from temperature;

备注:LOCAL关键字表现将数据导出到当地文件体系,如果去掉LOCAL表现将数据导出到HDFS。
https://i-blog.csdnimg.cn/direct/80ce29dbb83d4e6f9e4b24f0c5f2752f.png
3.2.2 第二种导出方式

使用CTAS布局把Hive查询的结果导出到一个新创建的表,详细操作如下:
hive> create table temperature5 as select * from temperature;

https://i-blog.csdnimg.cn/direct/d8aa964bd8df4b3bb1782e7650fa05fc.png
3.2.3 第三种导出方式

在bash中,直接通过hive -e命令将temperature表中的数据导出到当地文件体系,详细操作如下:
# /usr/local/hive/bin/hive -e "select * from weather.temperature" >> /usr/local/data/tmp/temperature.log.2024083002
https://i-blog.csdnimg.cn/direct/ac2eb062b4eb4f048a9de8eb3e0de984.jpeg
也可以先将Hive查询语句封装到temperature.sql文件,详细操作如下:
# vim /usr/local/hive/temperature.sql
输入如下内容: select * from weather.temperature;
然后在bash中,通过hive -f命令将temperature表中的数据导出到当地文件体系,详细操作如下:
# /usr/local/hive/bin/hive -f /usr/local/hive/temperature.sql >> /usr/local/data/tmp/temperature.log.2024083002
https://i-blog.csdnimg.cn/direct/814ca402bd46401f9671670ebd63f461.png
3.3 数据备份与恢复

Hive自带了数据的备份和恢复命令,不止数据,包括表布局也可以一同导出。
3.3.1 数据备份

通过export命令对temperature表中的数据进行备份,详细操作如下:
hive> export table temperature to '/user/hive/warehouse/mydb/backup/temperature';

https://i-blog.csdnimg.cn/direct/784dd3588ac14c60a3b71669176b3f24.png
Hive实行export命令就是将表布局存储在_metadata文件,并且直接将Hive数据文件复制到备份目录。
3.3.2 数据恢复

通过import命令恢复temperature表中的备份,详细操作如下:
hive> import table temperature_new from '/user/hive/warehouse/mydb/backup/temperature';

https://i-blog.csdnimg.cn/direct/42c3ca1164264f858d09baf6b7b33612.png
四、Hive 查询相关操作

前面已经将数据加载到Hive表中,接下来我们使用select语句的各种情势从Hive中检索数据。
4.1 查询显示所有字段

使用select语句查询显示temperature表的所有字段,详细操作如下:
hive> select * from temperature limit 3;

https://i-blog.csdnimg.cn/direct/5a6e72e79844469f95cf5798cd1dffeb.png
4.2 查询显示部分字段

使用select语句查询显示temperature表的部分字段,详细操作如下:
hive> select year,temperature from temperature limit 3;

https://i-blog.csdnimg.cn/direct/9285bd2e8ab5449c9e122fae198dd8af.png
4.3 where条件查询

使用where语句对temperature表进行过滤,查询显示气温值小于50的记载,详细操作如下:
hive> select * from temperature where temperature < 50;

https://i-blog.csdnimg.cn/direct/cc8f8189dc3f4c54b75c1b6d4526246f.png
4.4 distinct去重查询

使用distinct语句对temperature表中的气温字段进行去重查询,详细操作如下:
hive> select distinct temperature from temperature;

https://i-blog.csdnimg.cn/direct/00a64b85b4c94a55a0d1e912a6835a5d.png
4.5 group by分组查询

使用group by语句对temperature表按气象站ID来分组统计每个气象站的平均气温,详细操作如下:
hive> select id from temperature group by id ;

https://i-blog.csdnimg.cn/direct/20affdd9ed0b4e75ab5fd6cff53db417.png
4.6 order by全局排序

使用order by语句对temperature表按照气温值进行全局排序,详细操作如下:
hive> select * from temperature order by temperature;

https://i-blog.csdnimg.cn/direct/3f5b572530ac468c9891b63f7ff7e8d1.png
备注:order by语句会对表进行全局排序,因此底层作业只运行一个reduce任务。当表的数据规模较大时,全局排序需要运行的时间比力长。
4.7 sort by局部排序

使用sort by语句对temperature表进行局部排序,为了便于观察局部排序结果,可以将reduce任务的并行度设置为3,同时将局部排序后的结果输出到HDFS,详细操作如下:
hive>
hive> set mapreduce.job.reduces=3;
hive> INSERT OVERWRITE DIRECTORY '/weather/temperature' ROW FORMAT DELIMITED FIELDS TERMINATED by ',' select * from temperature sort by temperature;

https://i-blog.csdnimg.cn/direct/2c279ff3663248dcbfd369a3ffbe1c16.png
使用HDFS命令检察局部排序结果,可以看出每个输出文件结果局部有序,检察结果:
https://i-blog.csdnimg.cn/direct/d2d246bb6b6f40ea869bf5e6ae8d4fd3.png
4.8 distribute by分区查询

使用distribute by语句对temperature表中的数据按照气象站ID进行分区,详细操作如下:
hive> set mapreduce.job.reduces=3;
hive> INSERT OVERWRITE DIRECTORY '/weather/temperature' ROW FORMAT DELIMITED FIELDS TERMINATED by ',' select * from temperature DISTRIBUTE BY id;
使用HDFS命令检察分区文件,可以看出数据按照气象站ID分配到不同的分区,详细结果如下:
https://i-blog.csdnimg.cn/direct/310d18a410dd4982bd837286c64dfbb3.png
4.9 cluster by分区排序

cluster by兼具distribute by和sort by功能。当distribute by和sort by指定的字段雷同时,即可使用cluster by替换。使用cluster by语句对temperature表中的数据按照气象站ID进行分区和排序,详细操作如下:
hive> set mapreduce.job.reduces=3;
hive> INSERT OVERWRITE DIRECTORY '/weather/temperature' ROW FORMAT DELIMITED FIELDS TERMINATED by ',' select * from temperature cluster by id;
五、Hive 表连接相关操作

和直接使用MapReduce相比,使用Hive简化了多表连接操作,极大地低落开发资本。
5.1 等值连接

使用join子句实现temperature和station表的等值连接,如图操作如下:
hive> select t.id,t.year,t.temperature,s.state,s.latitude,s.longitude,s.elevation from temperature t join station s on (t.id==s.id) limit 3;
备注:表的等值连接是内连接的子集。
5.2 内连接

使用inner join子句实现temperature和station表的内连接,详细操作如下:
hive> select t.id,t.year,t.temperature,s.state,s.latitude,s.longitude,s.elevation from temperature t inner join station s on (t.id==s.id) limit 3;
备注:与等值连接相比,表的内连接的条件可以相称,也可以不相称。
5.3 左连接

使用left join子句实现temperature和station表的左连接,详细操作如下:
hive> select t.id,t.year,t.temperature,s.state,s.latitude,s.longitude,s.elevation from temperature t left join station s on (t.id==s.id) limit 3;
备注:使用左连接会显示左表temperature的所有数据,如果右表station通过外键与左表temperature有匹配数据就显示对应字段的数据,否则右表字段都显示为\N。
5.4 右连接

使用right join子句实现temperature和station表的右连接,详细操作如下:
hive> select t.id,t.year,t.temperature,s.state,s.latitude,s.longitude,s.elevation from temperature t right join station s on (t.id==s.id) limit 3;
·备注·:使用右连接会显示右表station的所有数据,如果左表temperature通过外键与右表station有匹配数据就显示对应字段的数据,否则右表字段都显示为\N。
5.5 全连接

使用full join子句实现temperature和station表的全连接,详细操作如下:
hive> select t.id,t.year,t.temperature,s.state,s.latitude,s.longitude,s.elevation from temperature t fulljoin station s on (t.id==s.id) limit 3;
备注:使用全连接会显示temperature和station表的所有数据,两个表通过id键进行关联,如果temperature表无匹配的数据则对应字段显示为\N,反之,station表对应的字段显示为\N。
六、Hive 内部表和外部表相关操作

在Hive中创建表时,默认环境下创建的是内部表(managed table),此时Hive负责管理数据,Hive会将数据移入它的仓库目录。别的一种选择是创建一个外部表(external table),这会让Hive到仓库目录以外的位置访问数据。
6.1 内部表

Hive建表时如果不使用external关键字,默认创建的就是内部表,内部表创建方式:
createtableif not exists managed_temperature
(id string,year string,temperature int)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE
LOCATION '/user/hive/warehouse/mydb/managed_temperature';
https://i-blog.csdnimg.cn/direct/ed7b0ecdac634b27a846ea6b615a6a84.png
使用load命令将数据加载到managed_temperature内部表时,Hive会把HDFS中的/weather/temperature.log文件移到LOCATION指定的仓库目录下,详细操作如下:
hive> load data inpath '/weather/temperature.log' overwrite into table managed_temperature;

使用drop命令删除managed_temperature内部表时,它的元数据和数据会被一起彻底删除,内部表删除操作如下:
hive> drop table managed_temperature;

6.2 外部表

使用external关键字创建的Hive表为外部表,此时数据的创建和删除由用户自己控制而非Hive,Hive只负责元数据的管理,建表方式如下:
create externaltableif not exists external_temperature
(id string,year string,temperature int)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE
LOCATION '/user/hive/warehouse/mydb/external_temperature';

https://i-blog.csdnimg.cn/direct/e4f12c7115e24a7995d8a0a7989f10cd.png
使用load命令将数据加载到external_temperature外部表时,Hive知道数据并不由自己管理,因此不会将数据移到LOCATION指定的仓库目录,加载操作如下:
hive> load data inpath '/weather/temperature.log' overwrite into table external_temperature;

https://i-blog.csdnimg.cn/direct/e348a52f318642f38c55eab8690d4847.png
使用drop命令删除external_temperature外部表时,Hive不会删除现实数据,而只会删除元数据,删除操作如下:
hive> drop table external_temperature

https://i-blog.csdnimg.cn/direct/643e9052e2fb424f85b4373e038dc7a4.png
七、Hive 分区与分桶相关操作

Hive把表组织身分区(partition),它是一种根据分区列的值对表进行划分的机制,使用分区可以加速数据分片的查询速度。表或者分区可以进一步分为桶,它会为数据提供额外的布局从而得到更高的查询服从。
7.1 分区

Hive创建partition_temperature表时,可以使用PARTITIONED BY子句来界说分区,并使用year字段作为分区列,详细操作如下:
createtableif not exists partition_temperature
(id string,temperature int)
PARTITIONED BY (year string)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED ASTEXTFILE
LOCATION '/user/hive/warehouse/mydb/partition_temperature';
https://i-blog.csdnimg.cn/direct/56582ae798de44e389620f9be368ed95.png
使用insert子句将temperature表中的数据加载到partition_temperature分区表中,并以year字段作为分区列动态创建分区,详细操作如下:
hive> set hive.exec.dynamic.partition=true;
hive> set hive.exec.dynamic.partition.mode=nonstrict;
hive> set hive.exec.max.dynamic.partitions.pernode=10000;
hive> set hive.exec.max.dynamic.partitions=10000;
hive> set hive.exec.max.created.files=10000;
hive> INSERT OVERWRITE TABLE partition_temperature PARTITION(year) SELECT id,temperature,year FROM temperature ;
https://i-blog.csdnimg.cn/direct/79fc10eaacb34251827194682d9d4ae7.png
可以使用show partitions命令检察Hive表中有哪些分区,partition_temperature表的分区结果如下:
https://i-blog.csdnimg.cn/direct/5230b5fdd16949689ee8b9735468ff3c.png
在select语句中使用where限定分区列year的值,如许Hive会对查询结果进行修剪,从而只扫描相关的分区,详细操作如下:
hive> select id,temperature from partition_temperature where year='1980';

https://i-blog.csdnimg.cn/direct/2286a884df584c7bad985051e5eb7a69.png
对于partition_temperature表限定到特定日期的查询,Hive的数据处理惩罚会变得非常高效,因为它们只需要扫描查询year=’2011’分区中的文件。
7.1 分桶

Hive创建bucket_temperature表时,可以使用clustered by子句来指定划分桶所用的列和要划分的桶的个数,详细操作如下:
create table bucket_temperature(id string,year string,temperature int)
clustered by(id)
into 3 buckets;

https://i-blog.csdnimg.cn/direct/91ce27843aa8492c83aa82197ecb21a8.png
在这里,我们使用气象站id来确定如何划分桶(Hive对id值进行哈希并将结果除以桶的个数取余数),如许任何一个桶里都会有一个随机的天气集合。
使用insert子句将temperature表中的数据加载到bucket_temperature分桶表中,详细操作如下:
hive> insert overwrite table bucket_temperture select * from temperature;

https://i-blog.csdnimg.cn/direct/2fbe3c5cecd54f168e3cebb1922443b0.png
物理上,每个桶就是表目录内里的一个文件。究竟上,桶对应于MapReduce的输出文件分区,一个作业产生的桶和reduce任务个数雷同。通过dfs命令检察bucket_temperature表目录下面的桶文件,详细操作如下:
# hdfs dfs -ls /user/hive/warehouse/mydb/bucket_temperature;

https://i-blog.csdnimg.cn/direct/cb42ab7f9a5e4c14ac4ca36b74f47a91.png
对于非常大的数据集,有时用户需要使用的是一个具有代表性的查询结果而不是全部结果。使用TABLESAMPLE子句对bucket_temperature表进行抽样来满足这个需求,详细操作如下:
hive> select * from bucket_temperature TABLESAMPLE(BUCKET 2 OUT OF 3 on id);

https://i-blog.csdnimg.cn/direct/c8e85a41d231473489417b1daa0e08d3.png
图中语句表现从3个桶中的第二个桶中获取所有的天气记载,因为查询只需要读取和TABLESAMPLE子句匹配的桶,以是取样分桶表好坏常高效的操作。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: HIVE 数据仓库工具之第二部分(数据库相关操作)