I'm loading a tsv file with a datetime column and long column with:
A = LOAD 'tweets-clean.txt' USING PigStorage('\t') AS (date:datetime, userid:long);
DUMP A;
An example line of input:
Tue Feb 11 05:02:10 +0000 2014 205291417
that line of output:
, 205291417
How do I do this properly?