Popularity
5.1
Growing
Activity
0.0
Stable
4
5
2
Monthly Downloads: 10
Programming language: Haskell
License: Apache License 2.0
hadoop-formats alternatives and similar packages
Based on the "hadoop" category.
Alternatively, view hadoop-formats alternatives based on common mentions on social networks and blogs.
Do you think we are missing an alternative of hadoop-formats or a related project?
README
Hadoop Formats
Read/write file formats commonly used by Hadoop.
Currently this package only supports reading snappy encoded sequence files.
Installation
You will need to have libsnappy
installed to build this project. If you are
using OSX and homebrew to install snappy then the following should get
everything installed successfully.
$ brew install snappy
$ SNAPPY=$(brew --prefix snappy)
$ export C_INCLUDE_PATH=$SNAPPY/include
$ export LIBRARY_PATH=$SNAPPY/lib
$ cabal install hadoop-formats