【发布时间】:2015-08-28 00:44:10
【问题描述】:
我写了一个非常简单的 Python,这是我的 UDF 代码、猪代码和错误消息,有什么想法有什么问题吗?谢谢。
UDF (test.py),
@outputSchema("cookie:chararray")
def getSimple():
return 'Hello'
猪码,
register test.py using jython as TestSimple;
a = TestSimple.getSimple() as word;
错误信息,
[main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 0> Syntax error, unexpected symbol at or near 'a'
提前致谢, 林
【问题讨论】:
-
Pig语法无效。
标签: python hadoop apache-pig udf