This library implements the LZO compression algorithm for github.com/fraugster/parquet-go. By default,
parquet-go
library only supports GZIP
and SNAPPY
as compression algorithms to minimize the list
of dependencies.
All you need to do is import this package into your program and the compression
algorithm will be automatically available in parquet-go
.
import (
_ "github.com/akrennmair/parquet-go-lzo" // registers the LZO block compressor with parquet-go
)
See the file LICENSE
for further license information.
Please note that this package is built using github.com/cyberdelia/lzo
which in turn
uses the original LZO implementation which is licensed as GPLv2+. Please be aware of the licensing implication this can have if you intend to use this in closed-source products that you intend to distribute.
Andreas Krennmair ak@synflood.at