Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dasch/avro2json

Decodes Avro data files and converts the data to JSON
https://github.com/dasch/avro2json

Last synced: 24 days ago
JSON representation

Decodes Avro data files and converts the data to JSON

Awesome Lists containing this project

README

        

# avro2json

Converts Avro-encoded data to JSON.

```
curl http://example.com/data.avro | avro2json
cat somefile.avro | avro2json
avro2json < somefile.avro
```

It's possible to use a custom schema when reading the Avro data:

```
avro2json --schema=some-schema.avsc < data.avro
```

Run `avro2json -h` for more information.

## Installation

```
gem install avro2json
```