Skip to content

Instantly share code, notes, and snippets.

@cstenac
Created February 19, 2013 09:03
Show Gist options
  • Save cstenac/4984203 to your computer and use it in GitHub Desktop.
Save cstenac/4984203 to your computer and use it in GitHub Desktop.
Hive GenericUDF interface (simplified)
public interface GenericUDF {
public Object evaluate(DeferredObject[] args) throws HiveException;
public String getDisplayString(String[] args);
public ObjectInspector initialize(ObjectInspector[] args) throws UDFArgumentException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment