erlavro icon indicating copy to clipboard operation
erlavro copied to clipboard

Avro support for Erlang/Elixir (http://avro.apache.org/)

Results 7 erlavro issues
Sort by recently updated
recently updated
newest added

Hey! Just wanted to flag that the use of snappyer in recent versions seems to now require a C++ toolchain in order to build erlavro. This is fixable at the...

Some draft for [idl](https://avro.apache.org/docs/current/idl.html) parser. Should fix #68 at some point. - [X] lexer - [x] parser (almost done) - [x] parser tests - [x] avdl-avsc converter - [ ]...

I'm trying to decode an OCF with invalid values for the namespace: ```javascript {"type":"record","name":"null","namespace":"null","fields":[{"name":"partition","type":"int"}, // [...] ``` Despite the namespace, erlavro would be able to decode it correctly except for...

I was looking to decode keys to atoms as an option in https://github.com/cogini/avro_schema/commit/2c07ca2fafde949fa78ec9f0af85245a92c6b731 and https://github.com/cogini/avro_schema/issues/25 However, as far as I can reason through the erlavro decoder hook code, I don't...

Avro schemas can be defined in 2 formats: json and [Avro IDL](https://avro.apache.org/docs/current/idl.html). erlavro currently supports only JSON version. Maybe it would worth to have support for avdl also?

I was trying out erlavro for schema evolution. I'm not sure what the stance on evolution is here. Is it not supported? Or is there a way to support it...

Hello there!!! I'm having some problems decoding a bytes type with decimal as logical type, whenever the default value is set. Example schema: ``` { "doc": "Testing decimals", "fields": [...