PIG按字符串过滤

时间:2016-03-02 02:16:33

标签: apache-pig

我正在尝试按字符串过滤,但它失败了。我如何按字符串过滤?我试着看http://pig.apache.org/docs/r0.10.0/basic.html#comparison,但匹配仅适用于正则表达式。

f = FILTER finished_set by item is not matches '.*0000000000000.*';
  

错误org.apache.pig.PigServer - 解析期间的异常:错误   在解析期间。不匹配   输入'匹配'期望NULL

1 个答案:

答案 0 :(得分:1)

f = FILTER finished_set BY NOT(item  MATCHES '.*0000000000000.*');