1.执行linux命令
方式 : ! + 命令 + ;
2.执行hadoop-hdfs操作
方式 : 例如:dfs -ls /; 相当于省略了hdfs, 内部封装了hdfs。
3.Hive的模式
- 本地模式
- 开发阶段建议使用本地模式
set hive.exec.mode.local.auto=true;
- 集群模式(默认)
- 生产环境建议使用集群模式
9. Hive的访问
- cli(命令行) shell中使用
- webui(很少用) 使用hive源码制成的war,放到hive中执行,通过web进行相关的操作
- api(代码中使用)
hive 支持三种引擎 mr , spark , tec。
10. Hive中的常见操作
- 查看数据库的列表
- show databases;
- 创建数据库
- create database wt;
- 显示当前使用的数据库
- set hive.cli.print.current.db=true;
- 删除数据库
- drop database wt;
- 创建表
- create table wt(id int , name String)
- 删除表
- drop table wt
-
增加列
- alter table t1 add columns(age int);
- 删除列(其实下面是错误的,不支持删除列)
-
alter table t1 drop cloumns(age);
-
11.执行hive脚本(*.hsq)
- 在linux中执行hive脚本
- hive -f xxx.hql
- 在hive中执行
- source xxx.hql