hive编程 | 使用mvn构造udf函数

Posted AI算法攻城狮

tags:

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

在阅读本篇博文之前,建议先读下使用原生添加lib的方式构造udf函数

hive添加UDF函数_AI算法攻城狮的博客-CSDN博客_hive 添加udf

1、把mvn setting.xml的镜像改为国内的镜像

<mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
     <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>     

以上是关于hive编程 | 使用mvn构造udf函数的主要内容,如果未能解决你的问题,请参考以下文章

hive编程 | 使用mvn构造udf函数

hive构造UDF函数

hive之UDF函数编程详解

hive 的udf 函数使用

Hive自定义函数(UDF)的编程开发,你会吗?

hive之udf函数的使用