[xiaoxq@hadoop105 hive-3.1.2]$ bin/hive -help
usage: hive
-d,--define Variable substitution to apply to Hive
commands. e.g. -d A=B or --define A=B
--database Specify the database to use
-e SQL from command line
-f SQL from files
-H,--help Print help information
--hiveconf Use value for given property
--hivevar Variable substitution to apply to Hive
commands. e.g. --hivevar A=B
-i Initialization SQL file
-S,--silent Silent mode in interactive shell
-v,--verbose Verbose mode (echo executed SQL to the
console)
7.1 在hive命令行里创建一个表student,并插入1条数据
hive (default)> create table student(id int,name String);
OK
Time taken: 2.228 seconds
hive (default)> insert into student values(1,"lisi");
hive (default)> select * from student;
OK
student.id student.name
1 lisi
Time taken: 0.207 seconds, Fetched: 1 row(s)
7.2 “ -e ” 不进入 Hive 的交互窗口执行 sql 语句
[xiaoxq@hadoop105 hive-3.1.2]$ bin/hive -e "select id from student;"
7.3 “ -f ” 执行脚本中 sql 语句
(1)在/opt/module/hive/下创建datas目录并在datas目录下创建hivef.sql文件
[xiaoxq@hadoop105 datas]$ vim hivef.sql
(2)文件中写入正确的sql语句
select * from student;
(3)执行文件中的sql语句
[xiaoxq@hadoop105 hive]$ bin/hive -f /opt/module/hive/datas/hivef.sql
(4)执行文件中的sql语句并将结果写入文件中
[xiaoxq@hadoop105 hive]$ bin/hive -f /opt/module/hive/datas/hivef.sql > /opt/module/datas/hive_result.txt
回顾:> 覆盖追加 >> 末端追加
8.1 退出 hive 窗口:
hive(default)>exit;
hive(default)>quit;
8.2 在hive cli命令窗口中如何查看hdfs文件系统
hive(default)>dfs -ls /;
8.3 查看在hive中输入的所有历史命令
(1)进入到当前用户的家目录/root或/home/xiaoxq
(2)查看. hivehistory文件,注意quit以后,此文件才会写入quit之前提交的命令。
[xiaoxq@hadoop105 ~]$cat .hivehistory
9.1.1 Hive的 log 默认存放在 /tmp/atguigu/hive.log 目录下(当前用户名下)
9.1.2 修改 hive 的 log 存放日志到 /opt/module/hive/logs
(1)修改 $HIVE_HOME/conf/hive-log4j.properties.template 文件名称为
hive-log4j.properties
[xiaoxq@hadoop105 ~]$ cd /opt/module/hive-3.1.2/conf/
[xiaoxq@hadoop105 conf]$ mv hive-log4j2.properties.template hive-log4j2.properties
[xiaoxq@hadoop105 conf]$ vim hive-log4j2.properties
hive.log.dir=/opt/module/hive/logs
(1) 修改 $HIVE_HOME/conf 下的 hive-env.sh.template 为 hive-env.sh
[xiaoxq@hadoop105 conf]$ pwd
/opt/module/hive-3.1.2/conf
[xiaoxq@hadoop105 conf]$ mv hive-env.sh.template hive-env.sh
[xiaoxq@hadoop105 conf]$ vim hive-env.sh
(2) 将 hive-env.sh 其中的参数 export HADOOP_HEAPSIZE=1024 的注释放开,重启 hive。
9.3.1 查看当前所有的配置信息
hive>set;
9.3.2 参数的配置三种方式
(1)参数的配置文件方式
默认配置文件:hive-default.xml
用户自定义配置文件:hive-site.xml
注意:用户自定义配置会覆盖默认配置。另外,Hive 也会读入 Hadoop 的配置,因为 Hive 是作为 Hadoop 的客户端启动的,Hive 的配置会覆盖 Hadoop 的配置。配置文件的设定对本机启动的所有 Hive 进程都有效。
(2)命令行参数方式
启动Hive时,可以在命令行添加 -hiveconf param=value 来设定参数。
例如(默认的执行引擎为 mr )
[xiaoxq@hadoop105 logs]$ hive -hiveconf hive.execution.engine=tez;
hive (default)> set hive.execution.engine;
hive.execution.engine=tez
或者
[xiaoxq@hadoop105 logs]$ beeline -u jdbc:hive2://hadoop105:10000 -n xiaoxq -hiveconf hive.execution.engine=tez;
0: jdbc:hive2://hadoop105:10000> set hive.execution.engine;
+----------------------------+
| set |
+----------------------------+
| hive.execution.engine=tez |
+----------------------------+
(3)参数声明方式
可以在HQL中使用SET关键字设定参数
例如:
hive (default)> set hive.execution.engine=tez;
注意:仅对本次hive启动有效。
查看参数设置
hive (default)> set hive.execution.engine;
上述三种设定方式的优先级依次递增。即配置文件 < 命令行参数 < 参数声明。注意某些系统级的参数,例如log4j相关的设定,必须用前两种方式设定,因为那些参数的读取在会话建立以前已经完成了。
小结:
hive-default < hive-site < hive -hiveconf < hive set 优先级依次增大
hive 参数配置的四种方式 :
hive-default hive-site 永久生效
hive -hiveconf hive set 临时生效 只对单此会话有作用