我是靠谱客的博主 彪壮苗条,最近开发中收集的这篇文章主要介绍hive 使用udf函数实现数据导入到mysql,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

利用hive内置的hive-contrib 来实现udf导入mysql,同时还需要mysql驱动包

例子:
add jar /usr/local/hive-0.13.1b/hive-contrib-0.13.1.jar;
add jar /usr/local/hive-0.13.1b/mysql-connector-java-5.1.32-bin.jar;

create temporary function dboutput as 'org.apache.hadoop.hive.contrib.genericudf.example.GenericUDFDBOutput'; 
select dboutput('jdbc:mysql://192.168.1.3:3306/ minp_db','mysqlusername','password','INSERT INTO  rs_click(date,site,click_vol,gradient) VALUES (?,?,?,?)',r.d,r.nv,r.ns,r.g) from 

(select from_unixtime(unix_timestamp() ,'yyyy-MM-dd') d,x.x1 nv,z.z2 ns,round(abs(x.x2-x.x3)/z.z2,2) g from (select a.p x1,a.nv x2,a.ov x3 from ( select  n.np p , n.ncv nv, o.ocv ov from (select param op ,sum(1) ocv from odm_partitioned where dt='2015-05-27' and unitid='pc_ucenter' and visittype='click' and link='pc' group by param) o join (select param np ,sum(1) ncv from odm_partitioned where  dt='2015-05-28' and unitid='pc_ucenter' and visittype='click' and link='pc' group by param) n on o.op = n.np) a ) x  full outer join ( select a.p z1,sum(a.nv) z2 from ( select  n.np p , n.ncv nv, o.ocv ov from (select param op ,sum(1) ocv from odm_partitioned where dt='2015-05-27' and unitid='pc_ucenter' and visittype='click' and link='pc' group by param) o join (select param np ,sum(1) ncv from odm_partitioned where  dt='2015-05-28' and unitid='pc_ucenter' and visittype='click' and link='pc' group by param) n on o.op = n.np) a group by a.p ) z on x.x1=z.z1) r;

注: 蓝色字体为需要导入的数据集

最后

以上就是彪壮苗条为你收集整理的hive 使用udf函数实现数据导入到mysql的全部内容,希望文章能够帮你解决hive 使用udf函数实现数据导入到mysql所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部