Sample Avro files
Apache Avro is a row-based data serialization format with the schema embedded right in the file. Widely used with Kafka and Hadoop. Below are sample .avro files with various schemas, types and codecs to download
🧠 How Avro works
Avro serializes data row by row, and the schema (in JSON) is stored right in the file header — the reader always knows the structure and needs no external description. Records are split into blocks, and each block is compressed with a codec (null, deflate, snappy). The format is built for streaming writes and schema evolution.
