Hive 自定义函数的介绍、开发以及使用

  1. Hive 常用的UDF有一下三种:
    1.1 UDF
           一条记录使用函数后输出事宜一条记录,eg:lower/substr
    1.2 UDAF(User Defined Aggregation Funcation)
           多条记录使用函数后输出一条记录,eg:count/max/min
    1.3 UDTF(User Defined Table-Generating Funcations)
           一条记录使用函数后输出多条记录,eg:lateral view explore()
  2. Hive 自定义函数开发步骤
    2.1 继承UDF类;
    2.2 重写 evaluate 方法,该方法支持重载,每一行记录执行一次 evaluate 方法。
  3. 用 IDEA 开发工具开发自定义函数
    3.1 pom.xml 中添加UDF函数开发依赖包。
    
        UTF-8
        2.6.0-cdh5.5.0
        1.1.0-cdh5.5.0
    

    
    
        
            cloudera
            https://repository.cloudera.com/artifactory/cloudera-repos/
        
    

    
        
        
            org.apache.hadoop
            hadoop-common
            ${hadoop.version}
            
        
        
        
            org.apache.hive
            hadoop-exec
            ${hive.version}
            
        
        
            org.apache.hive
            hadoop-jdbc
            ${hive.version}
           
        
    

         3.2 自定义UDF函数的实现

package com.lenovo.hive.udf;

import org.apache.hadoop.hive.ql.exec.UDF;

public class Hello extends UDF{

    public String evaluate(String h){
          return "UDF"+h;
    }
    
    //功能测试
    public static void main(String[] args){
          Hello h = new Hello();
          System.out.println(h.evaluate("baidu"))
    }
}
  1. 自定义函数使用
    4.1 编译成 jar 包上传到服务器;
    4.2 将自定义函数添加到hive中
    create temporary function sayHello as ‘package com.lenovo.hive.udf.Hello’
    using jar ‘hdfs://namenodeha/user/p66_u1036_yanggq2/tmp/udf.jar’;
    4.3 使用自定义函数
    select sayHello(“wangyi”);

你可能感兴趣的:(hive)