文章目录
hive知识点
创建表
hive创建orc格式表不能像textfile格式一样直接load数据到表中,一般需要创建临时textfile表,然后通过insert into 或者insert overwrite到orc存储格式表中。
临时表
create table if not exists hm3.hm3_format_log_tmp
(
time string,
data string
)
partitioned by (dt string, hour string, msgtype string, action string)
row format delimited fields terminated by '\t';
hm3数据表
create external table if not exists hm3.hm3_format_log
(
time string,
data string
)
partitioned by (dt string, hour string, msgtype string, action string)
row format delimited fields terminated by '\t'
stored as orc;
导入数据
- 导入