Pig DUMP command hangs

327 Views Asked by At

This is what I'm trying

grunt> myData = load '/user/sunil/pigDev/player.csv' using PigStorage(',') AS (
                    id:int,
                    name:chararray,
                    age:int,
                    gender:chararray,
                    game:chararray,
                    location:chararray);

grunt> describe myData;
data: {id: int,name: chararray,age: int,gender: chararray,game: chararray,location: chararray}

grunt> dump myData;

It initializes and loads everything, creates jar as well(as I can see in the console logs). But, eventually hangs forever with the below log message in the console.

2015-06-10 18:32:30,163 [main] INFO  org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MapReduceLauncher - 0% complete

I checked all log files(nodemanager,proxyserver and yarn-resourcemanager), don't see any error message.

I'm using CDH version : Hadoop 2.5.0-cdh5.3.0 Pig version : Apache Pig version 0.12.0-cdh5.3.0 (rexported)

0

There are 0 best solutions below