无法在FOREACH块内调用PIG宏

时间:2013-06-25 11:57:29

标签: hadoop hdfs apache-pig

我无法从foreach中调用宏,例如

 DEFINE valid_attribute(id,attribute)
    RETURNS result {
            data       =       LOAD '/user/sathish/sessAttr' AS (id:chararray,browser_version:chararray);
         filtered_data      = FILTER data BY id == '$id' AND $attribute is NOT null;
         $result            = foreach filtered_data generate $attribute;
    };

    ip = load '/user/sathish/macros/inputParams' AS (id:chararray,attribute:chararray);
    op = foreach ip {generate valid_attribute('ip::id','ip:attribute');};
    dump op;

我在调用时遇到以下异常:

2013-06-25 04:47:42,239 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1070: Could not resolve valid_attribute using imports: [, org.apache.pig.builtin., org.apache.pig.impl.builtin.]

1 个答案:

答案 0 :(得分:4)

您不能以这种方式使用宏。宏返回关系(表),而不是单个值。 GENERATE用于在您的关系中生成单个值。您使用宏的方式看起来就像是在尝试使用UDF,这就是为什么Pig在其默认类路径中查找函数的原因,就像对任何UDF一样。