1)代码实现
2 )打成 jar 包上传到服务器 /opt/module/hive/data/myudtf.jar 3 )将 jar 包添加到 hive 的 classpath 下 hive (default)> add jar /opt/module/hive/data/myudtf.jar; 4 )创建临时函数与开发好的 java class 关联 hive (default)> create temporary function myudtf as "com.atguigu.hive.MyUDTF"; 5 )使用自定义的函数 hive (default)> select myudtf("hello,world,hadoop,hive",",");