You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Jonathan Coveney (Updated) (JIRA)" <ji...@apache.org> on 2012/03/27 08:55:35 UTC

[jira] [Updated] (PIG-2547) Easier UDFs: Convenient EvalFunc super-classes

     [ https://issues.apache.org/jira/browse/PIG-2547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Coveney updated PIG-2547:
----------------------------------

    Fix Version/s: 0.11
                   0.10
    
> Easier UDFs: Convenient EvalFunc super-classes
> ----------------------------------------------
>
>                 Key: PIG-2547
>                 URL: https://issues.apache.org/jira/browse/PIG-2547
>             Project: Pig
>          Issue Type: New Feature
>            Reporter: Bill Graham
>            Assignee: Bill Graham
>             Fix For: 0.10, 0.11
>
>         Attachments: PIG_2547.1.patch, PIG_2547.2.patch
>
>
> We've got a few abstract extensions of EvalFunc that make life easier. If people are interested we can push said classes into Pig.
> There are 3 classes, each extending the next. Class naming is all TBD.
> * {{TypedOutputEvalFunc<OUT>}} - Implements {{public Schema outputSchema(Schema input)}} based on the generic type of the subclass. Provides common helper validation functions which increment counters for good and bad Tuple data passed. Useful where the input to be worked on is a tuple of size N or greater. 
> * {{PrimitiveEvalFunc<IN, OUT>}} - Same as above with helper validation allowing the ability it subclass and just implement {{public OUT exec(IN input)}}, where IN and OUT are primitives. Useful when the input is a single primitive in position 0 of a tuple. 
> * {{FunctionWrapperEvalFunc}} - Wraps a Guava Function implementation (http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/base/Function.html) and allows UDFs to be used in Pig scripts like so, where {{MyFunction}} is a class that implements {{Function}}:
> {noformat}
> DEFINE myUdf org.apache.pig.FunctionWrapperEvalFunc('MyFunction')
> {noformat}
>  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira