Re: [ANNOUNCE] Please welcome Brian Lachniet to the Apache Avro PMC

2019-08-24 Thread Driesprong, Fokko
Congrats Brian! Well deserved!

Cheers, Fokko

Op za 24 aug. 2019 om 18:57 schreef Niels Basjes 

> Welcome aboard
>
> On Sat, Aug 24, 2019, 17:40 Sean Busbey  wrote:
>
> > Hi folks!
> >
> > On behalf of the Apache Avro PMC I am pleased to announce that Brian
> > Lachniet has accepted our invitation to become a PMC member. We
> > appreciate Brian stepping up to take more responsibility in the
> > project.
> >
> > Please join me in welcoming Brian to the Avro PMC!
> >
> > As a reminder, if anyone would like to nominate another person as a
> > committer or PMC member, even if you are not currently a committer or
> > PMC member, you can always drop a note to priv...@avro.apache.org to
> > let us know.
> >
> > -busbey
> >
>


Re: [ANNOUNCE] Please welcome Brian Lachniet to the Apache Avro PMC

2019-08-24 Thread Niels Basjes
Welcome aboard

On Sat, Aug 24, 2019, 17:40 Sean Busbey  wrote:

> Hi folks!
>
> On behalf of the Apache Avro PMC I am pleased to announce that Brian
> Lachniet has accepted our invitation to become a PMC member. We
> appreciate Brian stepping up to take more responsibility in the
> project.
>
> Please join me in welcoming Brian to the Avro PMC!
>
> As a reminder, if anyone would like to nominate another person as a
> committer or PMC member, even if you are not currently a committer or
> PMC member, you can always drop a note to priv...@avro.apache.org to
> let us know.
>
> -busbey
>


[ANNOUNCE] Please welcome Brian Lachniet to the Apache Avro PMC

2019-08-24 Thread Sean Busbey
Hi folks!

On behalf of the Apache Avro PMC I am pleased to announce that Brian
Lachniet has accepted our invitation to become a PMC member. We
appreciate Brian stepping up to take more responsibility in the
project.

Please join me in welcoming Brian to the Avro PMC!

As a reminder, if anyone would like to nominate another person as a
committer or PMC member, even if you are not currently a committer or
PMC member, you can always drop a note to priv...@avro.apache.org to
let us know.

-busbey


[jira] [Work started] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-08-24 Thread Brian Lachniet (Jira)


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

Work on AVRO-2522 started by Brian Lachniet.

> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
> Fix For: 1.9.1
>
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Updated] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-08-24 Thread Brian Lachniet (Jira)


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

Brian Lachniet updated AVRO-2522:
-
Description: 
The Specific API in the C# bindings do not properly handle:
 * Schemas with {{IList}} in their name
 * Schemas with {{Nullable}} in their name
 * Arrays of nullables (see example schema below)

These throw an exception from the {{ObjectCreator}} indicating that it could 
not find the type.

This sample application on GitHub demonstrates these problems: 
[https://github.com/blachniet/AVRO-2522].

Here's a sample schema containing an array of nullables that triggers this 
problem.
{code:java}
{
  "namespace": "AvroListOfLists.Records",
  "name": "MyRecord",
  "type": "record",
  "fields": [
{
  "name": "MyList",
  "type": {
"type": "array",
"items": ["null", "int"]
  }
}
  ]
}
{code}

  was:
The Specific API in the C# bindings do not properly handle:
 * Schemas with {{IList}} in their name
 * Schemas with {{Nullable}} in their name
 * Arrays of nullables (see example schema below)

These throw an exception from the {{ObjectCreator}} indicating that it could 
not find the type.

Here's a sample schema containing an array of nullables that triggers this 
problem.
{code:java}
{
  "namespace": "AvroListOfLists.Records",
  "name": "MyRecord",
  "type": "record",
  "fields": [
{
  "name": "MyList",
  "type": {
"type": "array",
"items": ["null", "int"]
  }
}
  ]
}
{code}


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
> Fix For: 1.9.1
>
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Created] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-08-24 Thread Brian Lachniet (Jira)
Brian Lachniet created AVRO-2522:


 Summary: Specific API doesn't handle schemas with IList or 
Nullable in name
 Key: AVRO-2522
 URL: https://issues.apache.org/jira/browse/AVRO-2522
 Project: Apache Avro
  Issue Type: Bug
  Components: csharp
Affects Versions: 1.9.0
Reporter: Brian Lachniet
Assignee: Brian Lachniet
 Fix For: 1.9.1


The Specific API in the C# bindings do not properly handle:
 * Schemas with {{IList}} in their name
 * Schemas with {{Nullable}} in their name
 * Arrays of nullables (see example schema below)

These throw an exception from the {{ObjectCreator}} indicating that it could 
not find the type.

Here's a sample schema containing an array of nullables that triggers this 
problem.
{code:java}
{
  "namespace": "AvroListOfLists.Records",
  "name": "MyRecord",
  "type": "record",
  "fields": [
{
  "name": "MyList",
  "type": {
"type": "array",
"items": ["null", "int"]
  }
}
  ]
}
{code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)