Fast iteration of AVRO files
Project description
fastavro
The current Python avro package is packed with features but dog slow.
On a test case of about 10K records, it takes about 14sec to iterate over all of them. In comparison the JAVA avro SDK does it in about 1.9sec.
fastavro is less feature complete than avro, however it’s much faster. It iterates over the same 10K records in 2.9sec, and if you use it with PyPy it’ll do it in 1.5sec (to be fair, the JAVA benchmark is doing some extra JSON encoding/decoding).
Usage
from fastavro import iter_avro with open('some-file.avro', 'rb') as fo: avro = iter_avro(fo) schema = avro.schema for record in avro: process_record(record)
Limitations
- Support only iteration
No writing for you!
- Supports only null and deflate codecs
avro also supports snappy
No reader schema
Contact
Miki Tebeka <miki.tebeka@gmail.com> https://bitbucket.org/tebeka/fastavro
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fastavro-0.1.0.tar.gz
.
File metadata
- Download URL: fastavro-0.1.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ac004149f589e5e56a7e37e82e96170560e406a6ef913e39bed4d949d913809 |
|
MD5 | 4587c06cf97362aa00567f423fcaea4d |
|
BLAKE2b-256 | f6e8b67fd0d7b53d76d9d05299cfbee5f48b5057e3429aeefc9258b9b74b6e37 |
File details
Details for the file fastavro-0.1.0-py2.7.egg
.
File metadata
- Download URL: fastavro-0.1.0-py2.7.egg
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cdc6a041a1e00e55aa3473083b0743507cd23aab86e78503ae911aa260e54de |
|
MD5 | a3406305958f1143316b80e9ba6d406e |
|
BLAKE2b-256 | fc8d5ff59daeba1a1d34adc8d2fdd4df10e53aed9accdc0c5a70d333e49a1671 |