avro
avro copied to clipboard
A fast Go Avro codec
Hello all, Here's the situation. Apache Avro [spec has some naming guidelines](https://avro.apache.org/docs/1.11.1/specification/#names) for `Record, enums and fixed`. This library correctly checks that and fails when a file has a badly...
Hi, We currently leverage the hamba/avro to resolve our schemas and their dependencies and we need a feature to serialize the schemas once resolved, this is pretty useful when storing...
Draft proposal to support Serialize schemas feature #400.
Currently when parsing an avro schema, the [schema.go file](https://github.com/hamba/avro/blob/main/schema.go) contains a number of reserved properties that are removed from the schemas. These reserved properties include the `logicalType` property. However, some...
Hi, I've noticed that the enums are not being generated in the schema. Is it possible to enable the generation of enums? Thank you
Using `ocf.NewDecoder(r)` on a random avro file, the Decode operation panics due to a null pointer exception from hamba/avro. The issue is that `newEfaceDecoder` inside codec_dynamic does not check the...
Bumps the all group with 1 update: [github.com/klauspost/compress](https://github.com/klauspost/compress). Updates `github.com/klauspost/compress` from 1.17.10 to 1.17.11 Release notes Sourced from github.com/klauspost/compress's releases. v1.17.11 What's Changed zstd: Fix extra CRC written with multiple...
Hi Team, it would be really helpful if you team can create a new release with this change in it - https://github.com/hamba/avro/pull/460 Thanks
closes #435 Hi @nrwiersma This PR adds the possibility to register custom logical types for the schema. These logicaltypes are primitive, and does not include logic for handling custom encoding/decoding,...
Somewhat similar to #429 but more flexible and with keeping type annotations within the Avro schema, it would be great to generate a Go struct with [custom types using annotations](https://avro.apache.org/docs/1.12.0/idl-language/#annotations-for-ordering-and-namespaces)....