I am a newbie to Pig. I am trying to figure out how to define a bag or tuple with hard coded values, without loading data from a file. Every example that I have encountered with starts with:
a = LOAD '/file/name' using PigStorage(',');
or something similar. I just want to create a tuple or bag like this:
a = <1,2,3>;
Is it possible to use hard coded values for testing purposes?
Thanks.