目录
一.创建数据库
二.修改数据库
三.查询数据库
四.删除数据库
五.创建表
六.分区表
七.修改表
八.删除表
hive (default)> create database db_hive;
可能出现的报错:
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:For direct MetaStore DB connections, we don't support retries at the client level.)
解决办法:https://blog.csdn.net/mo_ing/article/details/81219533
个人解决版本:使用mysql-connector-java-5.1.27.jar,而不是mysql-connector-java-5.1.18.jar
hive> create database db_hive;
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Database db_hive already exists
标准写法:
hive (default)> create database if not exists db_hive;
hive (default)> create database db_hive2 location '/db_hive2.db';
用户可以使用ALTER DATABASE命令为某个数据库的DBPROPERTIES设置键-值对属性值,来描述这个数据库的属性信息。数据库的其他元数据信息都是不可更改的,包括数据库名和数据库所在的目录位置。
hive (default)> alter database db_hive set dbproperties('createtime'='20190506');
在mysql中查看修改结果
hive> desc database extended db_hive;
hive> show databases;
hive> show databases like 'db_hive*';
hive> desc database db_hive;
hive> desc database extended db_hive;
hive (default)> use db_hive;
hive>drop database db_hive2;
hive> drop database db_hive2;
正确做法:
hive> drop database if exists db_hive2;
hive> drop database db_hive;
正确做法:
hive> drop database db_hive cascade;
CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name
[(col_name data_type [COMMENT col_comment], ...)]
[COMMENT table_comment]
[PARTITIONED BY (col_name data_type [COMMENT col_comment], ...)]
[CLUSTERED BY (col_name, col_name, ...)
[SORTED BY (col_name [ASC|DESC], ...)] INTO num_buckets BUCKETS]
[ROW FORMAT row_format]
[STORED AS file_format]
[LOCATION hdfs_path]
如果相同名字的表已经存在,则抛出异常;用户可以用 IF NOT EXISTS 选项来忽略这个异常。
在建表的同时指定一个指向实际数据的路径(LOCATION),Hive创建内部表时,会将数据移动到数据仓库指向的路径;若创建外部表,仅记录数据所在的路径,不对数据的位置做任何改变。在删除表的时候,内部表的元数据和数据会被一起删除,而外部表只删除元数据,不删除数据。
DELIMITED [FIELDS TERMINATED BY char] [COLLECTION ITEMS TERMINATED BY char] [MAP KEYS TERMINATED BY char] [LINES TERMINATED BY char] | SERDE serde_name [WITH SERDEPROPERTIES (property_name=property_value, property_name=property_value, …)]
用户在建表的时候可以自定义SerDe或者使用自带的SerDe。如果没有指定ROW FORMAT 或者ROW FORMAT DELIMITED,将会使用自带的SerDe。在建表的时候,用户还需要为表指定列,用户在指定表的列的同时也会指定自定义的SerDe,Hive通过SerDe确定表的具体的列的数据。
常用的存储文件类型:SEQUENCEFILE(二进制序列文件)、TEXTFILE(文本)、RCFILE(列式存储格式文件)
如果文件数据是纯文本,可以使用STORED AS TEXTFILE。如果数据需要压缩,使用 STORED AS SEQUENCEFILE。
默认创建的表都是所谓的管理表,有时也被称为内部表。因为这种表,Hive会(或多或少地)控制着数据的生命周期。Hive默认情况下会将这些表的数据存储在由配置项hive.metastore.warehouse.dir(例如,/user/hive/warehouse)所定义的目录的子目录下。 当我们删除一个管理表时,Hive也会删除这个表中数据。管理表不适合和其他工具共享数据。
create table if not exists student2(
id int, name string
)
row format delimited fields terminated by '\t'
stored as textfile
location '/user/hive/warehouse/student2';
create table if not exists student3
as select id from student;
create table if not exists student4 like student;
hive (default)> desc formatted student4;
因为表是外部表,所以Hive并非认为其完全拥有这份数据。删除该表并不会删除掉这份数据,不过描述表的元数据信息会被删除掉。
每天将收集到的网站日志定期流入HDFS文本文件。在外部表(原始日志表)的基础上做大量的统计分析,用到的中间表、结果表使用内部表存储,数据通过SELECT+INSERT进入内部表。
分别创建部门和员工外部表,并向表中导入数据。
创建部门表
create external table if not exists default.dept(
deptno int,
dname string,
loc int
)
row format delimited fields terminated by '\t';
create external table if not exists default.emp(
empno int,
ename string,
job string,
mgr int,
hiredate string,
sal double,
comm double,
deptno int)
row format delimited fields terminated by '\t';
hive (default)> show tables;
导入数据
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table default.dept;
hive (default)> load data local inpath '/opt/module/datas/emp.txt' into table default.emp;
查询结果
hive (default)> select * from emp;
hive (default)> select * from dept;
hive (default)> desc formatted dept;
分区表实际上就是对应一个HDFS文件系统上的独立的文件夹,该文件夹下是该分区所有的数据文件。Hive中的分区就是分目录,把一个大的数据集根据业务需要分割成小的数据集。在查询时通过WHERE子句中的表达式选择查询所需要的指定的分区,这样的查询效率会提高很多。
/user/hive/warehouse/log_partition/20190702/20190702.log
/user/hive/warehouse/log_partition/20190703/20190703.log
/user/hive/warehouse/log_partition/20190704/20190704.log
hive (default)> create table dept_partition(
deptno int, dname string, loc string
)
partitioned by (month string)
row format delimited fields terminated by '\t';
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table default.dept_partition partition(month='201909');
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table default.dept_partition partition(month='201908');
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table default.dept_partition partition(month='201907');
单分区查询
hive (default)> select * from dept_partition where month='201909';
多分区联合查询
hive (default)> select * from dept_partition where month='201909'
union
select * from dept_partition where month='201908'
union
select * from dept_partition where month='201907';
创建单个分区
hive (default)> alter table dept_partition add partition(month='201906') ;
同时创建多个分区
hive (default)> alter table dept_partition add partition(month='201905') partition(month='201904');
注:增加多个分区之间用空格" “隔开,删除多个分区用”,"隔开
删除单个分区
hive (default)> alter table dept_partition drop partition (month='201904');
同时删除多个分区
hive (default)> alter table dept_partition drop partition (month='201905'), partition (month='201906');
hive> show partitions dept_partition;
hive> desc formatted dept_partition;
hive (default)> create table dept_partition2(
deptno int, dname string, loc string
)
partitioned by (month string, day string)
row format delimited fields terminated by '\t';
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table default.dept_partition2 partition(month='201909', day='13');
hive (default)> select * from dept_partition2 where month='201909' and day='13';
上传数据
hive (default)> dfs -mkdir -p /user/hive/warehouse/dept_partition2/month=201909/day=12;
hive (default)> dfs -put /opt/module/datas/dept.txt /user/hive/warehouse/dept_partition2/month=201909/day=12;
查询数据(查询不到刚上传的数据)
hive (default)> select * from dept_partition2 where month='201909' and day='12';
执行修复命令
hive>msck repair table dept_partition2;
再次查询数据
hive (default)> select * from dept_partition2 where month='201909' and day='12';
上传数据
hive (default)> dfs -mkdir -p /user/hive/warehouse/dept_partition2/month=201909/day=11;
hive (default)> dfs -put /opt/module/datas/dept.txt /user/hive/warehouse/dept_partition2/month=201909/day=11;
执行添加分区
hive (default)> alter table dept_partition2 add partition(month='201909', day='11');
查询数据
hive (default)> select * from dept_partition2 where month='201909' and day='11';
创建目录
hive (default)> dfs -mkdir -p /user/hive/warehouse/dept_partition2/month=201909/day=10;
上传数据
hive (default)> load data local inpath '/opt/module/datas/dept.txt' into table dept_partition2 partition(month='201909',day='10');
查询数据
hive (default)> select * from dept_partition2 where month='201909' and day='10';
ALTER TABLE table_name RENAME TO new_table_name
hive (default)> alter table dept_partition2 rename to dept_partition4;
详见1.6.1分区表基本操作。同上
更新列
ALTER TABLE table_name CHANGE [COLUMN] col_old_name col_new_name column_type [COMMENT col_comment] [FIRST|AFTER column_name]
增加和替换列
ALTER TABLE table_name ADD|REPLACE COLUMNS (col_name data_type [COMMENT col_comment], ...)
注:ADD是代表新增一字段,字段位置在所有列后面(partition列前),REPLACE则是表示替换表中所有字段。
hive> desc dept_partition;
hive (default)> alter table dept_partition add columns(deptdesc string);
hive>desc dept_partition;
hive (default)> alter table dept_partition change column deptdesc desc int;
hive>desc dept_partition;
hive (default)> alter table dept_partition replace columns(deptno string, dname string, loc string);
hive>desc dept_partition;
hive (default)> drop table dept_partition;