Popularity
4.6
Declining
Activity
0.0
Stable
4
4
2

Monthly Downloads: 10
Programming language: Haskell
License: Apache License 2.0
Tags: Data     Hadoop    

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?

Add another 'hadoop' Package

README

Hadoop Formats Hackage version Build Status

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