20.采集项目流程篇之清洗数据绑定到hive表中
Posted braveym
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20.采集项目流程篇之清洗数据绑定到hive表中相关的知识,希望对你有一定的参考价值。
先启动hive
在mydb2这个数据库中创建表;
create external table mydb2.access(ip string,day string,url string,upflow string) row format delimited fields terminated by ‘,‘;
把清洗后的数据导入到刚刚创建的hive表中
load data inpath ‘/uvout/hive/‘ into table mydb2.access;
以上是关于20.采集项目流程篇之清洗数据绑定到hive表中的主要内容,如果未能解决你的问题,请参考以下文章