I am just getting started with cloudxlab and am trying to run the following script
LDATA = LOAD ‘/user/kelleyramesh7685/sample.data’ USING PigStorage (’,’)
AS (gender:chararray, age:int, income:int, zip:chararray);
STORE LDATA INTO ‘/user/kelleyramesh7685/sample2’ USING PigStorage (’|’);
When I run this on the command line it works just fine. But, when I execute it using the Pig editor in HUE it just hangs.
Am I missing something?