hive 部署UDF函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive 部署UDF函数相关的知识,希望对你有一定的参考价值。

一.临时添加UDF函数

    1.上传jar包至hive服务器

    2.hive shell执行如下命令:  

add jar /home/hive/hivejar/billing-on-hive-1.0.jar
create temporary function strip as ‘com.tsingzone.bigdata.billing.GetOperator‘;
注:
strip:自定义函数名
com.tsingzone.bigdata.billing.GetOperator:类名
仅对当前shell生效

   3.使用方法:

     

select strip(dest_termi_id) from huadan201601 limit 10;

二.永久添加UDF函数

    1.上传jar包至hdfs中

      

hdfs dfs -put hivejar/billing-on-hive-1.0.jar /user/hive/hive_jar

    2.创建函数

      

create function billing as ‘com.tsingzone.bigdata.billing.GetOperator‘ using jar ‘hdfs:///user/hive/hive_jar/billing-on-hive-1.0.jar‘

    3.使用

       

hive -S -e "select billing(dest_termi_id) from huadan201601 limit 10;"

     

   参考文档:http://blog.csdn.net/liam08/article/details/51311772

以上是关于hive 部署UDF函数的主要内容,如果未能解决你的问题,请参考以下文章

hive 的udf 函数使用

hive自定义函数(UDF)

hive里的用户定义函数UDF

如何写hive的udf函数

hive之udf函数的使用

Hive函数入门--案例:UDF实现手机号加密--代码实现与效果演示