fs-hdfs

It's based on the version 0.0.4 of http://hyunsik.github.io/hdfs-rs to provide libhdfs binding library and rust APIs which safely wraps libhdfs binding APIs.

Current Status

Documentation

Requirements

Usage

Add this to your Cargo.toml:

toml [dependencies] fs-hdfs = "0.1.1"

fs-hdfs uses libhdfs. Firstly, we need to add library path to find the libhdfs. An example for MacOS,

sh export DYLD_LIBRARY_PATH=$HADOOP_HOME/lib/native:$JAVA_HOME/jre/lib/server

Here, $HADOOP_HOME and $JAVA_HOME need to be specified and exported.

Since our dependent libhdfs is JNI native implementation, it requires the proper CLASSPATH. An example,

sh export CLASSPATH=$CLASSPATH:`hadoop classpath`

Testing

The test also requires the CLASSPATH. In case that the java class of org.junit.Assert can't be found. Refine the $CLASSPATH as follows:

sh export CLASSPATH=$CLASSPATH:`hadoop classpath`:$HADOOP_HOME/share/hadoop/tools/lib/*

Then you can run

bash cargo test

Example

```rust use hdfs::hdfs::HdfsFs;

let fs: HdfsFs = HdfsFs::new("hdfs://localhost:8020/").ok().unwrap(); match fs.mkdir("/data") { Ok() => { println!("/data has been created") }, Err() => { panic!("/data creation has failed") } }; ```