我想读取猪脚本中的属性。其他一些工作会产生该属性的值并将其写入 hdfs。
我尝试使用以下脚本并且它有效。
%declare a com.company.Check();
x = LOAD '1' using PigStorage('^A') as (b:chararray);
y = FOREACH x GENERATE b, $a ;
但是当我通过 udf 中的参数时,pigscript 失败了。
%declare a com.comapny.Check($p);
x = LOAD '1' using PigStorage('^A') as (b:chararray);
y = FOREACH x GENERATE b, $a ;
有人可以帮我吗?