Skip to content

Commit

Permalink
update readMe.md
Browse files Browse the repository at this point in the history
add udf demo
  • Loading branch information
ideal committed Aug 28, 2018
1 parent 52eb94e commit b623c03
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ with tb2 as (
group by key,TUMBLE(rowtime,INTERVAL '5' SECOND)
) select * from tb2
```

## UDF UDAF UDTF
The registration of the custom function is consistent with the hive
```sql
create function json_parser as 'ideal.sylph.runner.flink.udf.JsonParser';
```

## Building
sylph builds use Gradle and requires Java 8.
```
Expand Down

0 comments on commit b623c03

Please sign in to comment.