1)Hive官网地址:http://hive.apache.org/
2)文档查看地址:https://cwiki.apache.org/confluence/display/Hive/GettingStarted
3)下载地址:http://archive.apache.org/dist/hive/
4)github地址:https://github.com/apache/hive
前提
1.hadoop要先启动
2.在HDFS上创建/tmp和/user/hive/warehouse两个目录并修改他们的同组权限可写
[liucw@hadoop102 hadoop-2.7.2]$ bin/hadoop fs -mkdir /tmp
[liucw@hadoop102 hadoop-2.7.2]$ bin/hadoop fs -mkdir -p /user/hive/warehouse
[liucw@hadoop102 hadoop-2.7.2]$ bin/hadoop fs -chmod g+w /tmp
[v@hadoop102 hadoop-2.7.2]$ bin/hadoop fs -chmod g+w /user/hive/warehouse
Hive安装及配置
1)解压到/opt/module/目录下面
$ tar -zxvf apache-hive-1.2.1-bin.tar.gz -C /opt/module/
2)conf目录
$ mv hive-env.sh.template hive-env.sh
3)配置hive-env.sh文件
export HADOOP_HOME=/opt/module/hadoop-2.7.2
export HIVE_CONF_DIR=/opt/module/hive/conf
vi /etc/profile
错误日志查看: cat /tmp/liucw/hive.log
将本地文件导入Hive案例
需求:将/opt/module/datas/student.txt这个目录下的数据导入到hive的student(id int, name string)表中。
1)数据准备:在/opt/module/datas/student.txt这个目录下准备数据
1)在/opt/module/目录下创建datas
[liucw@hadoop102 module]$ mkdir datas
2)在/opt/module/datas/目录下创建student.txt文件并添加数据
[liucw@hadoop102 module]$ touch student.txt
[liucw@hadoop102 module]$ vi student.txt
1001 zhangshan
1002 lishi
1003 zhaoliu
注意以tab键间隔。
2)hive实际操作
[liucw@hadoop102 hive]$ bin/hive
hive>show databases;
hive>use default;
hive>show tables; // 显示default数据库中的表
hive> drop table student; // 删除已创建的student
6)创建student表, 并声明文件分隔符’\t’
hive> create table student(id int, name string) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
7)加载/opt/module/datas/student.txt 文件到student数据库表中。
hive> load data local inpath '/opt/module/datas/student.txt' into table student;
hive> select * from student;
OK
1001 zhangshan
1002 lishi
1003 zhaoliu
Time taken: 0.266 seconds, Fetched: 3 row(s)
3)遇到的问题
再打开一个客户端窗口启动hive,会产生java.sql.SQLException异常。
原因是,Metastore默认存储在自带的derby数据库中,推荐使用MySQL存储Metastore;
MySql安装
安装包准备
1)查看mysql是否安装,如果安装了,卸载mysql
a)查看:rpm -qa|grep mysql
b)卸载: rpm -e --nodeps mysql-libs-5.1.73-7.el6.x86_64
2)并设置当前用户执行权限
[root@hadoop102 mysql-libs]# ll
总用量 76048
-rw-r--r--. 1 root root 18509960 3月 26 2015 MySQL-client-5.6.24-1.el6.x86_64.rpm
-rw-r--r--. 1 root root 3575135 12月 1 2013 mysql-connector-java-5.1.27.tar.gz
-rw-r--r--. 1 root root 55782196 3月 26 2015 MySQL-server-5.6.24-1.el6.x86_64.rpm
[root@hadoop102 mysql-libs]# chmod u+x ./*
[root@hadoop102 mysql-libs]# ll
总用量 76048
-rwxr--r--. 1 root root 18509960 3月 26 2015 MySQL-client-5.6.24-1.el6.x86_64.rpm
-rwxr--r--. 1 root root 3575135 12月 1 2013 mysql-connector-java-5.1.27.tar.gz
-rwxr--r--. 1 root root 55782196 3月 26 2015 MySQL-server-5.6.24-1.el6.x86_64.rpm
安装MySql服务器
1)安装mysql服务端
[root@hadoop102 mysql-libs]# rpm -ivh MySQL-server-5.6.24-1.el6.x86_64.rpm
2)查看产生的随机密码!!
[root@hadoop102 mysql-libs]# cat /root/.mysql_secret
OEXaQuS8IWkG19Xs
3)查看mysql状态
[root@hadoop102 mysql-libs]# service mysql status
4)启动mysql
[root@hadoop102 mysql-libs]# service mysql start
如果安装失败:https://blog.csdn.net/typa01_kk/article/details/49059729
安装MySql客户端
1)安装mysql客户端
[root@hadoop102 mysql-libs]# rpm -ivh MySQL-client-5.6.24-1.el6.x86_64.rpm
2)链接mysql
[root@hadoop102 mysql-libs]# mysql -uroot -pOEXaQuS8IWkG19Xs
3)修改密码
mysql>SET PASSWORD=PASSWORD('000000');
4)退出mysql
mysql>exit
MySql中user表中主机配置
配置只要是root用户+密码,在任何主机上都能登录MySQL数据库。
1)进入mysql
[root@hadoop102 mysql-libs]# mysql -uroot -proot
mysql>show databases;
mysql>use mysql;
mysql>show tables;
mysql>desc user;
mysql>select User, Host, Password from user;
2)修改user表,把Host表内容修改为%
mysql>update user set host='%' where host='localhost';
3)删除root用户的其他host
mysql>delete from user where Host='hadoop102 ';
mysql>delete from user where Host='127.0.0.1';
mysql>delete from user where Host='::1';
4)刷新并退出
mysql>flush privileges;
mysql> quit;
Hive元数据配置到MySql
驱动拷贝
1)在/opt/software/mysql-libs目录下解压mysql-connector-java-5.1.27.tar.gz驱动包
[root@hadoop102 mysql-libs]# tar -zxvf mysql-connector-java-5.1.27.tar.gz
2)拷贝/opt/software/mysql-libs/mysql-connector-java-5.1.27目录下的mysql-connector-java-5.1.27-bin.jar到/opt/module/hive/lib/
[root@hadoop102 mysql-connector-java-5.1.27]# cp mysql-connector-java-5.1.27-bin.jar /opt/module/hive/lib/
配置Metastore到MySql
1)在/opt/module/hive/conf目录下创建一个hive-site.xml
[root@hadoop102 conf]# vi hive-site.xml
2)根据官方文档配置参数,拷贝数据到hive-site.xml文件中。
https://cwiki.apache.org/confluence/display/Hive/AdminManual+MetastoreAdmin
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://hadoop102:3306/metastore?createDatabaseIfNotExist=true</value>
<description>JDBC connect string for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.option.ConnectionDriverName</name>
<value>com.mysql.jdbc.Driver</value>
</property>
<property>
<name>javax.jdo.option.ConnectionUserName</name>
<value>root</value>
</property>
<property>
<name>javax.jdo.option.ConnectionPassword</name>
<!-- mysql的密码-->
<value>000000</value>
</property>
<!--实现显示当前数据库,以及查询表的头信息配置-->
<property>
<name>hive.cli.print.header</name>
<value>true</value>
</property>
<property>
<name>hive.cli.print.current.db</name>
<value>true</value>
</property>
</configuration>
3)配置完毕后,如果启动hive异常,可以重新启动虚拟机。(重启后,别忘了启动hadoop集群)
多窗口启动Hive测试
1)先启动MySQL
[liucw@hadoop102 mysql-libs]$ mysql -uroot -p000000
查看有几个数据库
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
2)再次打开多个窗口,分别启动hive
[liucw@hadoop102 hive]$ bin/hive
3)启动hive后,回到MySQL窗口查看数据库,显示增加了metastore数据库
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| metastore | <-----
| mysql |
| performance_schema |
| test |
+--------------------+
Hive命令操作
Hive基本操作
1)启动hive $ bin/hive
2)查看数据库: hive>show databases;
3)打开默认数据库: hive>use default;
4)显示default数据库中的表: hive>show tables;
5)创建一张表: hive> create table student(id int, name string);
6)显示数据库中有几张表: hive>show tables;
7)查看表的结构: hive>desc student;
8)向表中插入数据: hive> insert into student values(1000,"ss");
9)查询表中数据: hive> select * from student;
10)退出hive: hive> quit;
在新版的oracle中没区别了,在以前的版本是有的:
exit:先隐性提交数据,再退出;
quit:不提交数据,退出;
11)查看在hive中输入的所有历史命令
(1)进入到当前用户的根目录/root或/home/liucw
(2)查看. hivehistory文件
[liucw@hadoop102 ~]$ cat .hivehistory
12)查看hdfs文件系统: hive>dfs -ls /;
13)查看hdfs本地系统: hive>! ls /opt/module/datas;
Hive常用交互命令
$ bin/hive -help
hive> create table student(id int, name string) row format delimited fields terminated by ‘\t’;
1)“-e”不进入hive的交互窗口执行sql语句
[liucw@hadoop102 hive]$ bin/hive -e "select id from default.student;"
2)“-f”执行脚本中sql语句
(1)在/opt/module/datas目录下创建hivef.sql文件
[liucw@hadoop102 datas]$ touch hivef.sql
文件中写入正确的sql语句
select *from student;
s
(2)执行文件中的sql语句
[liucw@hadoop102 hive]$ bin/hive -f /opt/module/datas/hivef.sql
(3)执行文件中的sql语句并将结果写入文件中
[liucw@hadoop102 hive]$ bin/hive -f /opt/module/datas/hivef.sql > /opt/module/datas/hive_result.txt
Hive常见属性配置
Hive数据仓库位置配置
1).Default数据仓库的最原始位置是在hdfs上的:/user/hive/warehouse路径下
2).在仓库目录下,没有对默认的数据库default创建文件夹。如果某张表属于default数据库,直接在数据仓库目录下创建一个文件夹。
(3)修改default数据仓库原始位置(将hive-default.xml.template如下配置信息拷贝到hive-site.xml文件中)
<property>
<name>hive.metastore.warehouse.dir</name>
<value>/user/hive/warehouse</value>
<description>location of default database for the warehouse</description>
</property>
配置同组用户有执行权限 bin/hdfs dfs -chmod g+w /user/hive/warehouse
显示当前数据库,以及查询表的头信息配置
1)在hive-site.xml文件中添加如下配置信息,就可以实现显示当前数据库,以及查询表的头信息配置。
<property>
<name>hive.cli.print.header</name>
<value>true</value>
</property>
<property>
<name>hive.cli.print.current.db</name>
<value>true</value>
</property>
2)重新启动hive,对比配置前后差异
1)配置前
hive> select * from student
1001 xiaoli
1002 libingbing
2)配置后
hive(db_hive)> select * from student
student.id student.name
1001 xiaoli
1002 libingbing
Hive运行日志信息配置
1)Hive的log默认存放在/tmp/liucw/hive.log目录下(当前用户名下)
2)修改hive的log存放日志到/opt/module/hive/logs
(1)修改/opt/module/hive/conf/hive-log4j.properties.template文件名称为hive-log4j.properties
[liucw@hadoop102 conf]$ pwd
/opt/module/hive/conf
[liucw@hadoop102 conf]$ mv hive-log4j.properties.template hive-log4j.properties
(2)在hive-log4j.properties文件中修改log存放位置
hive.log.dir=/opt/module/hive/logs