20.采集项目流程篇之清洗数据绑定到hive表中

先启动hive

20.采集项目流程篇之清洗数据绑定到hive表中

 

20.采集项目流程篇之清洗数据绑定到hive表中

 

在mydb2这个数据库中创建表;

20.采集项目流程篇之清洗数据绑定到hive表中

 create external table mydb2.access(ip string,day string,url string,upflow string) row format delimited fields terminated by ',';

 

 

20.采集项目流程篇之清洗数据绑定到hive表中

 

 20.采集项目流程篇之清洗数据绑定到hive表中

 

 把清洗后的数据导入到刚刚创建的hive表中

20.采集项目流程篇之清洗数据绑定到hive表中

load data inpath '/uvout/hive/' into table mydb2.access;

 

 

 20.采集项目流程篇之清洗数据绑定到hive表中

 

上一篇:Java ASM系列:(003)ASM与ClassFile


下一篇:21.根据hive绑定数据统计计算保存到hive表中