Hue中添加hive自定义函数

hue目前因为开启sentry 后不能 add jar语句,目前只能用永久函数解决该问题。

具体方法如下:

首先把文件上传hdfs
hdfs dfs -put 

授权
beeline> !connect jdbc:hive2://10.5.xx.xx:2500
GRANT ALL ON URI 'hdfs://xxx:8020/tmp.db/function/Dmo.jar' TO ROLE read;

创建函数
create  function tmp.Dmo as 'com.Dmo' using jar'hdfs://xxx:8020/tmp.db/function/Dmo.jar'   ;


select 
order_id,
account,tmp.Dmo(account)  
from tmp.fact__order where month ='2020-08' limit 20 

 

 

注意:如果要删除改函数,务必先删除函数,后删除jar包,否则会报这个错误

 

你可能感兴趣的:(大数据+机器学习+oracle,hive)