You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2018/11/29 20:18:00 UTC

[jira] [Resolved] (AVRO-2131) Records with unions with self references fail to parse.

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

Daniel Kulp resolved AVRO-2131.
-------------------------------
       Resolution: Fixed
         Assignee: Daniel Kulp
    Fix Version/s: 1.9.0

> Records with unions with self references fail to parse.
> -------------------------------------------------------
>
>                 Key: AVRO-2131
>                 URL: https://issues.apache.org/jira/browse/AVRO-2131
>             Project: Apache Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.8.1
>         Environment: Java 1.8.0_152-b1
>            Reporter: Jeff Maxwell
>            Assignee: Daniel Kulp
>            Priority: Major
>             Fix For: 1.9.0
>
>
> Records with unions with self references fail to parse.
> The example below fails to parse with {{"Type not supported: Node"}}
> {code:javascript}
> [
>   {
>     "namespace": "tree",
>     "type": "record",
>     "name": "Node",
>     "fields": [
>       {
>         "name": "left",
>         "type": [
>           "null",
>           {
>             "type": "Node"
>           }
>         ],
>         "default": null
>       },
>       {
>         "name": "right",
>         "type": [
>           "null",
>           {
>             "type": "Node"
>           }
>         ],
>         "default": null
>       }
>     ]
>   }
> ]
>  {code}
> When we don't allow nullability it parses successfully:
> {code:javascript}
> [
>   {
>     "namespace": "tree",
>     "type": "record",
>     "name": "Node",
>     "fields": [
>       {
>         "name": "left",
>         "type": "Node"
>       },
>       {
>         "name": "right",
>         "type": "Node"
>       }
>     ]
>   }
> ]
>  {code}
> The root cause: When the second element of the union, {{\{"type":"Node"}\}}, is parsed there is no path that can successfully handle the {{JsonNode}}.
> The solution is to add this logic to the {{Schema.parse(JsonNode schema, Names names)}} method:
> {code:java}
>       } else {  //For unions with self reference
>         Name nameFromType = new Name(type, names.space);
>         if (names.containsKey(nameFromType)) {
>           return names.get(nameFromType);
>         }
>         throw new SchemaParseException("Type not supported: "+type);
>       }
> {code}
> Pull request attached



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)