[S2GRAPH-225] support custom udf class JIRA: [S2GRAPH-225] https://issues.apache.org/jira/browse/S2GRAPH-225
Pull Request: Closes #185 Author Chul Kang <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/5c42b1cf Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/5c42b1cf Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/5c42b1cf Branch: refs/heads/master Commit: 5c42b1cf6513435ef868937661ed888aca7fb8f1 Parents: 66b656f 99babed Author: DO YUNG YOON <[email protected]> Authored: Wed Dec 5 14:31:21 2018 +0900 Committer: DO YUNG YOON <[email protected]> Committed: Wed Dec 5 14:37:26 2018 +0900 ---------------------------------------------------------------------- CHANGES | 1 + project/Common.scala | 2 +- s2jobs/build.sbt | 1 + .../scala/org/apache/s2graph/s2jobs/Job.scala | 7 +-- .../apache/s2graph/s2jobs/JobDescription.scala | 8 ++- .../org/apache/s2graph/s2jobs/JobLauncher.scala | 8 +++ .../org/apache/s2graph/s2jobs/task/Sink.scala | 22 ++++---- .../org/apache/s2graph/s2jobs/udfs/Grok.scala | 36 ++++++++++++ .../org/apache/s2graph/s2jobs/udfs/Udf.scala | 14 +++++ .../s2graph/s2jobs/utils/GrokHelper.scala | 59 ++++++++++++++++++++ 10 files changed, 141 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/5c42b1cf/CHANGES ---------------------------------------------------------------------- diff --cc CHANGES index df8fbf2,13dfef9..bdc3da4 --- a/CHANGES +++ b/CHANGES @@@ -38,6 -38,6 +38,7 @@@ Release Notes - S2Graph - Version 0.2. * [S2GRAPH-205] - too many initialize S2Graph when writeBatchMutate on S2GraphSink * [S2GRAPH-201] - Provide S2GraphSource * [S2GRAPH-218] - add operations not supported on sql ++ * [S2GRAPH-225] - support custom udf class ** Bug * [S2GRAPH-159] - Wrong syntax at a bash script under Linux http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/5c42b1cf/project/Common.scala ----------------------------------------------------------------------
