Popularity
4.4
Declining
Activity
0.0
Stable
4
3
2
Monthly Downloads: 11
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.
-
hadoop-tools
Tools for working with Hadoop, written with performance in mind.
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