I am currently debugging a pig script. I'd like to define a tuple in the Pig file directly (instead of the basic "Load" function).
Is there a way to do it?
I am looking for something like that:
A= ('name#bob'','age#29';'name#paul','age#12')
The dump Will return :
('bob',29)
('paul',12)
%declare
but I don't think you are allowed just to create some data on the fly (without loading it from hdfs/local disk) – Mainsail