Hive安装、配置和测试

Hive概述

Hive是基于Hadoop的一个数据仓库工具,可以将结构化的数据文件映射为一张表,并提供类SQL查询功能。
Hive本质是:将HQL转化成MapReduce程序。
Hive处理的数据存储在HDFS中,分析数据底层的实现可以是MapReduce、tes或者Spark,其执行程序运行在Yarn上。

Hive优缺点

优点:

  • 使用简单,类SQL语法易于使用。
  • 可扩展性,可以随时扩展集群规模。
  • 延展性,支持自定义函数。
  • 无需开发MapReduce程序。

缺点:

  • 效率低延迟高,对处理大数据有优势。
  • 不支持记录级别的增删改操作。
  • 不支持事物。
  • 调优困难。

Hive安装

只在集群中的主节点服务器中进行安装配置即可,安装包可以去官方主页https://hive.apache.org/进行下载:

HIve安装01.png

使用Xftp将安装包上传到hadoop-1的/usr目录下:
Hive安装02.png

进入/user目录,使用tar命令将压缩包进行解压,执行命令:

# tar zxvf apache-hive-2.3.6-bin.tar.gz

解压完成后会在/usr目录下生成apache-hive-2.3.6-bin目录:


Hive安装03.png

使用vim编辑环境变量:

# vim /etc/profile

新增内容如下:

export HIVE_HOME=/usr/apache-hive-2.3.6-bin
export PATH=$HIVE_HOME/bin:$PATH
Hive安装04.png

保存退出,,执行命令使修改生效:

# source /etc/profile

Hive配置

使用如下命令,在HDFS中创建/root/hive和/root/hive/warehouse两个目录:

# hadoop fs -mkdir -p /root/tmp
# hadoop fs -mkdir -p /root/hive/warehouse
Hive安装05.png

使用如下命令,为目录赋予权限:

# hadoop fs -chmod a+w /root/tmp
# hadoop fs -chmod a+w /root/hive/warehouse

hive-site.xml文件配置

使用如下命令,进入Hive配置文件目录,查看文件:

# cd /usr/apache-hive-2.3.6-bin/conf
# ll
Hive安装06.png

现在没有hive-site.xml文件,使用如下命令,拷贝hive-default.xml.template文件为hive-site.xml文件:

# cp hive-default.xml.template hive-site.xml
Hive安装07.png

使用vim编辑hive-site.xml文件:

# vim hive-site.xml
Hive安装08.png

将配置文件中的内容做如下更改:

  
    hive.metastore.warehouse.dir
    /root/hive/warehouse
    location of default database for the warehouse
  
  
    hive.exec.scratchdir
    /root/tmp
    HDFS root scratch dir for Hive jobs which gets created with write all (733) permission. For each connecting user, an HDFS scratch dir: ${hive.exec.scratchdir}/<username> is created, with ${hive.scratch.dir.permission}.
  
  
    javax.jdo.option.ConnectionURL
    jdbc:mysql://localhost:3306/metastore_db?createDatabaseIfNotExist=true&useSSL=false
    
      JDBC connect string for a JDBC metastore.
      To use SSL to encrypt/authenticate the connection, provide database-specific SSL flag in the connection URL.
      For example, jdbc:postgresql://myhost/db?ssl=true for postgres database.
    
  
  
    javax.jdo.option.ConnectionDriverName
    com.mysql.jdbc.Driver
    Driver class name for a JDBC metastore
  
  
    javax.jdo.option.ConnectionUserName
    root
    Username to use against metastore database
  
  
    javax.jdo.option.ConnectionPassword
    Password@123!
    password to use against metastore database
  
  
    hive.metastore.schema.verification
    true
    
      Enforce metastore schema version consistency.
      True: Verify that version information stored in is compatible with one from Hive jars.  Also disable automatic
            schema migration attempt. Users are required to manually migrate schema after Hive upgrade which ensures
            proper metastore schema migration. (Default)
      False: Warn if the version information stored in metastore doesn't match with one from in Hive jars.
    
  

然后将该配置文件中的所有${system:java.io.tmpdir}替换为/usr/apache-hive-2.3.6-bin/tmp;
将所有的${system:user.name}替换为root。
使用如下命令,在/usr/apache-hive-2.3.6-bin目录下创建tmp目录,并赋予权限:

# mkdir /usr/apache-hive-2.3.6-bin/tmp
# chmod a+w /usr/apache-hive-2.3.6-bin/tmp
Hive安装09.png

hive-env.sh文件配置

使用如下命令,拷贝hive-env.sh.template文件为hive-env.sh文件:

# cp hive-env.sh.template hive-env.sh

使用vim编辑hive-env.sh文件:

# vim hive-env.sh

添加Hadoop的安装路径:

HADOOP_HOME=/usr/hadoop-2.7.7
Hive安装10.png

添加数据库驱动包

由于Hive默认使用derby数据库存储元数据,只能单一访问(不能同时打开两个Hive客户端),所以此处使用本机安装的MySQL 5.7数据库,前文已经记录MySQL的安装(前文连接:https://www.jianshu.com/p/a40c70791cb5),所以将数据库连接的驱动包放到/usr/apache-hive-2.3.6-bin/lib目录下:

Hive安装11.png

Hive使用

使用Hive前,保证Hadoop和MySQL数据库已经启动完成状态。
执行如下命令,进行MySQL的初始化(只需安装配置完毕首次使用执行):

# schematool  -initSchema -dbType mysql 
Hive安装12.png

登录数据库,使用如下命令进行查询:

> show databases;

可以看到在hive-site.xml中配置的数据库metastore_db已经创建:


Hive安装13.png

使用如下命令进行数据库metastore_db的表查询:

> use metastore_db;
> show tables;

可以查询到初始化数据库生成的Hive相关的表:


Hive安装14.png

使用如下命令进入Hive:

# hive
Hive安装15.png

Hive测试

查看数据库:

> show databases;

创建数据库:

> create database testhive;

进入某数据库:

> use testhive;

显示某数据库的表信息:

> show tables;

创建数据库表:

> create table testtable(id int,name string,age int) row format delimited fields terminated by ' ' lines terminated by '\n';

查看数据库表结构:

> desc testtable;

删除某数据库:

> drop database if exists testhive;

Hive加载本地文件数据,在/home目录下创建一个test.txt文件,写入以下内容:

1 Dcl_Snow 18
2 Dcl 19
3 Snow 20

执行如下命令,将文件中的数据加载到testhive数据库中的testtable表中:

> load data local inpath '/home/test.txt' into table testhive.testtable;

查看表中数据:

> select * from testhive.testtable;

Hive安装16.png


建表时的分隔符,换行符,都要与test.txt中数据的分隔符和换行符相同,否则查询表数据时,会显示数据都是NULL。

你可能感兴趣的:(Hive安装、配置和测试)