https://github.com/yingzhuo/hive-my-functions
My apache-hive User Defined Functions.
https://github.com/yingzhuo/hive-my-functions
apache-hive udf udtf utaf
Last synced: about 1 year ago
JSON representation
My apache-hive User Defined Functions.
- Host: GitHub
- URL: https://github.com/yingzhuo/hive-my-functions
- Owner: yingzhuo
- License: apache-2.0
- Created: 2021-01-04T03:58:24.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-25T01:30:39.000Z (over 5 years ago)
- Last Synced: 2025-03-16T11:11:50.022Z (over 1 year ago)
- Topics: apache-hive, udf, udtf, utaf
- Language: Java
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hive-my-functions
```hiveql
drop function if exists age;
create function
age as 'com.github.yingzhuo.hive.function.AgeFunction'
using jar 'hdfs://192.168.99.130:8020/user/hive/jars/hive-my-functions-1.0.0.jar';
drop function if exists desensitize;
create function
desensitize as 'com.github.yingzhuo.hive.function.DesensitizeFunction'
using jar 'hdfs://192.168.99.130:8020/user/hive/jars/hive-my-functions-1.0.0.jar';
drop function if exists explode_str;
create function
explode_str as 'com.github.yingzhuo.hive.function.ExplodeStringFunction'
using jar 'hdfs://192.168.99.130:8020/user/hive/jars/hive-my-functions-1.0.0.jar';
```