hive自定义UDF实现md5加密函数

hive自定义UDF实现md5加密函数

1 pom.xm配置

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.itcast</groupId>
    <artifactId>UDFtest</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.apache.hive</groupId>
            <artifactId>hive-exec</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
            <version>2.7.4</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.2</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <filters>
                                <filter>
                                    <artifact>*:*</artifact>
                                    <excludes>
                                        <exclude>META-INF/*.SF</exclude>
                                        <exclude>META-INF/*.DSA</exclude>
                                        <exclude>META-INF/*.RSA</exclude>
                                    </excludes>
                                </filter>
                            </filters>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

2 写一个 java 类,继承 UDF,并重载 evaluate 方法

import com.google.common.base.Strings;
import com.google.common.hash.Hashing;
import org.apache.commons.compress.utils.Charsets;
import org.apache.hadoop.hive.ql.exec.UDF;

public class TestMD5 extends UDF {

    public static String evaluate(String in){
        if(Strings.isNullOrEmpty(in.trim())){
            return null;
        }
        return Hashing.md5().newHasher().putString(in, Charsets.UTF_8).hash().toString();
    }

/*    public static void main(String[] args) {
        System.out.println(evaluate("wangjie"));
    }*/
}

3 打成 jar 包上传到服务器

4 将 jar 包添加到 hive 的 classpath

add jar /root/UDFtest-1.0-SNAPSHOT.jar;

5 注册临时函数(用户自定义函数重启之后 就失效)

create temporary function itcastfunc as 'TestMD5';
create temporary function 函数名 as '类全路径';

6 测试

 select itcastfunc("wangjie");
+-----------------------------------+--+
|                _c0                |
+-----------------------------------+--+
| 209eae20cef54355b3fc1086cb9ceae2  |
+-----------------------------------+--+
1 row selected (0.149 seconds)
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值