Re: Commands not working properlry when stored in pig file

2013-03-27 Thread Prashant Kommireddi
Check hdfs to see if this really exists hdfs://user/lnindrakrishna/exp/03272013/part-r-0 On Wed, Mar 27, 2013 at 2:40 PM, Mix Nin wrote: > I wrote a pig script as follows and stored it in x.pig file > > Data = LOAD '/' as ( ) > NoNullData= FILTER Data by qe is not null; > STORE (for

Re: Commands not working properlry when stored in pig file

2013-03-27 Thread Mix Nin
This is the error I get org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MapReduceLauncher - 32% complete 2013-03-27 14:38:35,568 [main] INFO org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MapReduceLauncher - 50% complete 2013-03-27 14:38:45,731 [main] INFO org.apache.p

Re: Commands not working properlry when stored in pig file

2013-03-27 Thread Harsh J
Moving to Pig's user lists. Please use the right lists for your user questions. On Thu, Mar 28, 2013 at 3:10 AM, Mix Nin wrote: > I wrote a pig script as follows and stored it in x.pig file > > Data = LOAD '/' as ( ) > NoNullData= FILTER Data by qe is not null; > STORE (foreach (group

Commands not working properlry when stored in pig file

2013-03-27 Thread Mix Nin
I wrote a pig script as follows and stored it in x.pig file Data = LOAD '/' as ( ) NoNullData= FILTER Data by qe is not null; STORE (foreach (group NoNullData all) generate flatten($1)) into 'exp/$inputDatePig'; evnt_dtl =LOAD 'exp/$inputDatePig/part-r-0' AS (cust,) I execut