In pig script, I know that we can use passed-in parameters like the following:
%declare CMD `$mycmd $date`
A = load '/data/mydata/$CMD';
B = filter A by $0>'5';
But how can I save the parameters into a file?
Thanks
In pig script, I know that we can use passed-in parameters like the following:
%declare CMD `$mycmd $date`
A = load '/data/mydata/$CMD';
B = filter A by $0>'5';
But how can I save the parameters into a file?
Thanks