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.
3.1.4
of hadoop repository. For rust usage, a few changes are also applied.Add this to your Cargo.toml:
toml
[dependencies]
fs-hdfs3 = "0.1.9"
Firstly, we need to add library path for the jvm related dependencies. An example for MacOS,
sh
export DYLD_LIBRARY_PATH=$JAVA_HOME/jre/lib/server
For Centos
sh
export LD_LIBRARY_PATH=$JAVA_HOME/jre/lib/amd64/server
Here, $JAVA_HOME
need to be specified and exported.
Since our compiled libhdfs is JNI native implementation, it requires the proper CLASSPATH
. An example,
sh
export CLASSPATH=$CLASSPATH:`hadoop classpath --glob`
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 --glob`:$HADOOP_HOME/share/hadoop/tools/lib/*
Here, $HADOOP_HOME
need to be specified and exported.
Then you can run
bash
cargo test
```rust use std::sync::Arc; use hdfs::hdfs::{gethdfsbyfullpath, HdfsFs};
let fs: Arc