You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "nag y (JIRA)" <ji...@apache.org> on 2015/11/23 11:59:11 UTC

[jira] [Commented] (HIVE-3095) Self-referencing Avro schema creates infinite loop on table creation

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

nag y commented on HIVE-3095:
-----------------------------

i am just wondering if this issue is fixed ? I am still getting the issue with latest hive version

> Self-referencing Avro schema creates infinite loop on table creation
> --------------------------------------------------------------------
>
>                 Key: HIVE-3095
>                 URL: https://issues.apache.org/jira/browse/HIVE-3095
>             Project: Hive
>          Issue Type: Bug
>          Components: Serializers/Deserializers
>    Affects Versions: 0.9.1
>            Reporter: Keegan Mosley
>            Assignee: Mohammad Kamrul Islam
>            Priority: Minor
>              Labels: avro
>
> An Avro schema which has a field reference to itself will create an infinite loop which eventually throws a StackOverflowError.
> To reproduce using the linked-list example from http://avro.apache.org/docs/1.6.1/spec.html
> create table linkedListTest row format serde 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'
> with serdeproperties ('avro.schema.literal'='
> {
>    "type": "record", 
>    "name": "LongList",
>    "aliases": ["LinkedLongs"],                      // old name for this
>    "fields" : [
>       {"name": "value", "type": "long"},             // each element has a long
>       {"name": "next", "type": ["LongList", "null"]} // optional next element
>    ]
> }
> ')
> stored as inputformat 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat'
> outputformat 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat';



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)