Re: AvroInputFormat Serialisation Issue

2018-11-09 Thread Vinay Patil
Hi, Changing the classloader config to parent-first solved the issue. Regards, Vinay Patil On Wed, Nov 7, 2018 at 7:25 AM Vinay Patil wrote: > Hi, > > Can someone please help here. > > On Nov 6, 2018 10:46 PM, "Vinay Patil [via Apache Flink User Mailing List > archive.]" wrote: > >> Hi, >> >

Re: AvroInputFormat Serialisation Issue

2018-11-06 Thread Vinay Patil
Hi, I am facing a similar issue today with Flink 1.6.0 - AvroOutputFormat AvroOutputFormat tuple2AvroOutputFormat = new AvroOutputFormat<>( new Path(""), GenericRecord.class); testDataSet .map(new GenerateGenericRecord()) .returns(AvroTypeInfo.of(G

Re: AvroInputFormat Serialisation Issue

2018-05-15 Thread Timo Walther
Flink should not interact poorly with heavily nested schemas. So this might be another bug that is worth investigating. Can you share an example that reproduces your issues with us? Which Flink version are you using? Contributors are always welcome :) I will also take a look into the serializ

Re: AvroInputFormat Serialisation Issue

2018-05-15 Thread Timo Walther
Hi Padarn, usually people are using the AvroInputFormat with the Avro class generated by an Avro schema. But after looking into the implementation, one should also be able to use the GenericRecord class as a parameter. So your exception seems to be a bug if it works locally but not distribute