You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Yan Zhou (JIRA)" <ji...@apache.org> on 2009/11/23 18:24:39 UTC

[jira] Updated: (PIG-1074) Zebra store function should allow '::' in column names in output schema

     [ https://issues.apache.org/jira/browse/PIG-1074?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yan Zhou updated PIG-1074:
--------------------------

    Fix Version/s: 0.7.0
                   0.6.0

> Zebra store function should allow '::' in column names in output schema
> -----------------------------------------------------------------------
>
>                 Key: PIG-1074
>                 URL: https://issues.apache.org/jira/browse/PIG-1074
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Pradeep Kamath
>             Fix For: 0.6.0, 0.7.0
>
>
> the following script fails: 
>  {noformat}
>             a = load '/zebra/singlefile/studenttab10k' using org.apache.hadoop.zebra.pig.TableLoader() as (name, age, gpa);
>                         b = load '/zebra/singlefile/votertab10k' using org.apache.hadoop.zebra.pig.TableLoader() as (name, age, registration, contributions);
>                         c = filter a by age < 20;
>                         d = filter b by age < 20;
>                         store c into '/user/pig/out//ZebraMultiQuery_30.out.1' using org.apache.hadoop.zebra.pig.TableStorer('');
>                         store d into '/user/pig/out//ZebraMultiQuery_30.out.2' using org.apache.hadoop.zebra.pig.TableStorer('');
>                         e = cogroup c by name, d by name;
>                         f = foreach e generate flatten(c), flatten(d);
>                         store f into '/user/pig//ZebraMultiQuery_30.out.3' using org.apache.hadoop.zebra.pig.TableStorer('');
> {noformat}
> Here the schema of f has names like c::name and it looks like zebra storefunc does not allow '::' in column name 
> The stack trace is
>  
> ERROR 2997: Unable to recreate exception from backend error: java.io.IOException: ColumnGroup.Writer constructor failed : Partition constructor failed :Encountered " ":" ": "" at line 1, column 3.
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.