hadoop-formats

Read/write file formats commonly used by Hadoop


Keywords
data, library, Propose Tags, Index, Data.Hadoop.SequenceFile, Data.Hadoop.SequenceFile.Parser, Data.Hadoop.SequenceFile.Types, Data.Hadoop.Writable, hadoop-formats-0.2.1.1.tar.gz, browse, Package description, revised, metadata revisions, Package maintainers, JacobStanley, edit package information
License
Apache-2.0
Install
cabal install hadoop-formats-0.2.1.1

Documentation

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