0

我编写了一个非常简单的 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'

提前谢谢, 林

4

1 回答 1

2

您需要加载一些数据而不是使用 UDF 处理它。喜欢:加载数据:

A = LOAD 'input' USING PigStorage('\t','-schema');

使用 UDF 处理您的数据,假设您的输入中有一个 id 字段:

B = FOREACH A GENERATE TestSimple.getSimple(id) as word;

当然,您需要按照正确的方式注册您的 UDF。

于 2015-08-28T04:32:50.837 回答