You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@pig.apache.org by Harsh J <ha...@cloudera.com> on 2013/03/27 22:43:11 UTC

Re: Commands not working properlry when stored in pig file

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 <pi...@gmail.com> 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 NoNullData all) generate flatten($1))  into
> 'exp/$inputDatePig';
>
>
> evnt_dtl =LOAD 'exp/$inputDatePig/part-r-00000' AS (cust,,,,,)
>
>
>
> I executed the command as follows
>
> pig  -f x.pig -param inputDatePig=03272013
>
>
> And  finally it says exp/03272013 tough the directory exists as it gets
> created in STORE command.
>
> What is wrong in this



-- 
Harsh J