You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gora.apache.org by "Lewis John McGibbney (JIRA)" <ji...@apache.org> on 2012/11/16 16:00:14 UTC

[jira] [Commented] (GORA-183) dataStore.put() ->org.apache.gora.hbase.util.HBaseInterface#toBytes(). Unknown type: UNION

    [ https://issues.apache.org/jira/browse/GORA-183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13498845#comment-13498845 ] 

Lewis John McGibbney commented on GORA-183:
-------------------------------------------

Hi Alfonso, can you please review GORA-174 and comment on whither the issues are the same or linked? My initial oberservation is that they are the same issue. Thank you for reporting. 
                
> dataStore.put() ->org.apache.gora.hbase.util.HBaseInterface#toBytes(). Unknown type: UNION
> ------------------------------------------------------------------------------------------
>
>                 Key: GORA-183
>                 URL: https://issues.apache.org/jira/browse/GORA-183
>             Project: Apache Gora
>          Issue Type: Bug
>          Components: storage-hbase
>    Affects Versions: 0.2, 0.2.1
>         Environment: Ubuntu 12.04, HBase 0.92.0, Gora 0.2.1, Avro 1.3.2
>            Reporter: Alfonso Nishikawa
>
> When trying to write a row I get the RuntimeException "Unknown type: UNION".
> My .avsc is the following:
> {code}
> {"name": "TestRow",
>  "type": "record",
>  "namespace": "es.foo.tests.storage",
>  "fields": [
>         {"name": "columnLong", "type": "long", "default": "0"},
>         {"name": "unionRecursive", "type": ["TestRow","null"]},
>         {"name": "unionString", "type": ["string","null"]},
>         
>         {"name": "family2", "type": {"type": "map", "values":"string"}}
>    ]
> }
> {code}
> my mapping is:
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <gora-orm>
>     <table name="test"> <!-- ConfiguraciĆ³n de familias -->
>         <family name="family1"  maxVersions="1" compression="SNAPPY" />
>         <family name="family2"  maxVersions="1" compression="SNAPPY" />
>     </table>
>     <class table="test" keyClass="java.lang.String" name="es.foo.tests.storage.TestRow">
>         <field name="unionString"       family="family1" qualifier="unionString"    />
>         <field name="unionRecursive"    family="family1" qualifier="unionRecursive" />
>         <field name="columnLong"        family="family1" qualifier="colInteger"     />
>         <field name="family2"       family="family2" />
>     </class>
> </gora-orm>
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira