本地安装:

  1. apache-hive-1.2.1-bin.tar.gz上传到linux的/opt/software目录下
  2. tar -zxvf apache-hive-1.2.1-bin.tar.gz -C /opt/module/
  3. mv apache-hive-1.2.1-bin/ hive
  4. mv hive-env.sh.template hive-env.sh
  5. export HADOOP_HOME=/opt/module/hadoop-2.7.2
  6. export HIVE_CONF_DIR=/opt/module/hive/conf
  7. 必须启动hdfsyarn(参考hadoop-HA
  8. 配置环境变量
  9. HADOOP_HOME=/module/hadoop2.6
  10. export PATH=$PATH:$HIVE_HOME/bin

基本操作

  1. create table student(id int, name string) ROW FORMAT DELIMITED FIELDS TERMINATED
  2. BY '\t';
  3. show tables;
  4. desc student;

image.png

基本配置:

1.在hive-site.xml文件中添加如下配置信息,就可以实现显示当前数据库,以及查询表的头信息配置。

  1. <property>
  2. <name>hive.cli.print.header</name>
  3. <value>true</value>
  4. </property>
  5. <property>
  6. <name>hive.cli.print.current.db</name>
  7. <value>true</value>
  8. </property>

2.Hive运行日志信息配置
启动时的日志可用通过该hive -hiveconf hive.root.logger=debug,console命令查看
修改/opt/module/hive/conf/hive-log4j.properties.template文件名称为hive-log4j.properties
hive.log.dir=$HIVE_HOME/logs
3.参数配置

  1. 配置文件
    1. 默认配置文件:hive-default.xml
    2. 用户自定义配置文件:hive-site.xml(用户自定义配置会覆盖默认配置。另外,Hive也会读入Hadoop的配置,因为Hive是作为Hadoop的客户端启动的,Hive的配置会覆盖Hadoop的配置。配置文件的设定对本机启动的所有Hive进程都有效)
  2. 命令行参数方式

启动Hive时,可以在命令行添加-hiveconf param=value来设定参数。例如:bin/hive -hiveconf mapred.reduce.tasks=10;(注意:仅对本次hive启动有效)
查看参数设置:set mapred.reduce.tasks;

  1. 参数声明方式

可以在HQL中使用SET关键字设定参数(注意:仅对本次hive启动有效)

命令行使用

关于命令行引用,可以使用hive当然也可以使用beeline,需要配置hiveserver2 和memstore

  1. #hive 初始化
  2. bin/schematool -dbType mysql -initSchema
  3. nohup /export/server/hive-2.1.0/bin/hive --service metastore &
  4. nohup /export/server/hive-2.1.0/bin/hive --service hiveserver2 &
  5. beeline
  6. #建立链接
  7. !connect jdbc:hive2://node3:10000
  8. #core-site.xml文件配置
  9. <property>
  10. <name>hadoop.proxyuser.root.hosts</name>
  11. <value>*</value>
  12. </property>
  13. <property>
  14. <name>hadoop.proxyuser.root.groups</name>
  15. <value>*</value>
  16. </property>

本地模式
set hive.exec.mode.local.auto=true;

参考文档:https://cwiki.apache.org/confluence/display/Hive/GettingStarted
beeline使用问题:https://blog.csdn.net/brad_q1/article/details/88773554