https://github.com/civitaspo/presto-udf-skeleton
https://github.com/civitaspo/presto-udf-skeleton
wip
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/civitaspo/presto-udf-skeleton
- Owner: civitaspo
- License: apache-2.0
- Created: 2019-03-25T10:34:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-28T02:44:07.000Z (about 6 years ago)
- Last Synced: 2025-01-21T22:44:12.015Z (4 months ago)
- Topics: wip
- Language: Scala
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
presto-udf-skeleton
==============================A skeleton to create A Presto UDF Plugin.
# Usage
```
TBD...
```# Configurations
TBD...
# Development
# Build
The below command creates dependency jars into `classpath`.
```
./gradlew classpath
```# Package for Presto
The below command creates dependency jars as a archive `pkg/presto-udf-skeleton-X.Y.Z.tgz`, so you can extract and put them into `/usr/lib/presto/plugin` on your Presto servers.
```
./gradlew pkg
```# Run tests
```
./gradlew test
```