Hello,
I am working on a project that aims at converting Mainframe data to Avro
records (https://github.com/legsem/legstar.avro).
Mainframe data often contains Decimal types. For these, I would like the
corresponding Avro records to expose BigDecimal fields.
Initially, I followed the recomm
seems to me a better solution would be that the
"java-class" trick be extended so that more complex conversions can
occur between the avro type and the java type exposed by Specific
classes. Right now, the java type must be castable from the avro type
which is limiting.
Anyway,
On 22/01/2016 17:15, Bernd Wiswedel wrote:
Has anyone successfully run Avro in an OSGi environment? There was an
issue fixed for release 1.7.6 [1] and I also see the 'correct'
MANIFEST.MF in the build. This is what it looks like (from [2]):
29 Implementation-Title: Apache Avro
30 Implementa
On 05.07.2017 21:53, Zoltan Farkas wrote:
> The synchronization in JsonProperties is curently inconsistent (see
> getObjectProps()) which makes current implementation @NotThreadSafe
>
> I think it would be probably best to remove synchronization from those
> methods... and add @NotThreadSafe t
re the offending data is would also help.
Fady
Excellent news. Ryan, you are doing a fantastic job. Congratulations!
Fady
This code, using your schema:
Schema schema = new Schema.Parser().parse(new
File("src/test/data/nestedrecord.avsc"));
JsonEncoder out = EncoderFactory.get().jsonEncoder(schema, System.out,
true);
DatumWriter writer = new GenericDatumWriter<>(schema);
GenericRecord person = new GenericData.Record