【hive】
把hdfs上的文件的数据加载到表中
LOAD DATA INPATH ‘路径’ into table 表名
把linux本地文件加载到数据中
LOAD DATA LOCAL INPATH ‘路径’ into table 表名
把查询的数据加载到表中
INSERT into table 需要加载数据的表名 select * from 表名
hive和hbase的映射表的创建
例
create table video.hbase_rate(
videoId string,
uploader string,
age string,
category string,
length string,
views string,
rate string,
ratings string,
comments string,
relatedId string)
stored by ‘org.apache.hadoop.hive.hbase.HBaseStorageHandler’
with serdeproperties(“hbase.columns.mapping” = “cf:uploader,cf:age,cf:category,cf:length,cf:views,cf:rate,cf:ratings,cf:comments,cf:relatedId”)
tblproperties(“hbase.table.name” = “hbase_rate”);
外部表的关键字
external
生成随机数
row_number() over()