gogen-avro icon indicating copy to clipboard operation
gogen-avro copied to clipboard

Generate Go code to serialize and deserialize Avro schemas

Results 39 gogen-avro issues
Sort by recently updated
recently updated
newest added

There is a typo in hamba reference in README, it's minor. `[hamba/avro](https://github.com/hamba/avro]) is another library oriented towards high performance for generic data.` the correct is: `[hamba/avro](https://github.com/hamba/avro) is another library oriented...

Hi again! 👋 Ran into this when trying to generate code for a schema that relies heavily on unions: ```bash ❯ gogen-avro ./go-generated ./output/ProductUpdated.avsc Error writing source files to directory...

Hi, I'm looking into using this library at Confluent and it looks like this can be used for both generated structs and generic data. However, I don't see an example...

I've tried running the install command in the Readme for v7 `go install github.com/actgardner/gogen-avro/v7/cmd/...`, and it is refusing to install with `go: warning: "github.com/actgardner/gogen-avro/v7/cmd/..." matched no packages `. I've also...

Currently there's no support for the time.Time go type. One option would be to extend your library with support for a specifically named logical-type, e.g. "date-time", another option would be...

I need a tool that can help determine if a new version of a schema is fully-compatible with the old version and have been considering to use this library. I...

Hello, Is it intentional for unions not to have a fingerprint, and thus to not implement `soe.AvroRecord`? We have a topic that has a union at the root level, so...

for example, there is a result for MarshalJSON() function. `{"bucket":{"int":0},"buckets":null,"docid":null}` I want to filter the 'null' in this case.

Including a `NewXxxUnionTttt` and/or `SetTttt` for each union type that sets the appropriate type enum value would significantly improve usability. Currently, many of the straightforward approaches for setting a non-default...