hdfs-sys   ![Build Status] ![Latest Version]

Bindings to HDFS Native C API.

Work with these bindings directly is boring and error proven, please use hdrs instead if ever possible.

Supported Platforms

Supported Versions

To target a version of libhdfs, enable a Cargo features such as one of the following:

Please note:

Compile

hdfs-sys supports both dynamic link, static link and vendor:

Dependencies

This crate will link to libjvm dynamically.

To make this crate works correctly, please make sure the following env set correctly:

NOTE: hdfs-sys will ignore linking if DOCS_RS is set to build docs.

Runtime

hdfs-sys uses JNI to call functions provided by jars that provided by hadoop releases. Please make sure CLASSPATH is set correctly before calling any functions provided by hdfs-sys:

shell export JAVA_HOME=/path/to/java export HADOOP_HOME=/path/to/hadoop export LD_LIBRARY_PATH=${JAVA_HOME}/lib/server export CLASSPATH=$(find $HADOOP_HOME -iname "*.jar" | xargs echo | tr ' ' ':')

Contributing

Check out the CONTRIBUTING.md guide for more details on getting started with contributing to this project.

Getting help

Submit issues for bug report or asking questions in discussion.

Related Projects

Acknowledgment

This project is highly inspired by clang-sys

License

Licensed under Apache License, Version 2.0.