I get:
org.apache.pig.impl.logicalLayer.FrontendException: ERROR 1066: Unable to open iterator for test
when I have the code:
my_file = LOAD '$my_records_file' USING PigStorage('\t') AS (field0:chararray, field1:int);
test = FILTER my_file BY field0 != null;
Why am I getting this error?