hdrs   ![Build Status] ![Latest Version]

HDFS Native Client in Rust based on hdfs-sys.

Quick Start

```rust use std::io::{Read, Write};

use hdrs::Client;

fn main() -> Result<(), Box> { let fs = Client::connect("default")?;

let mut f = fs
    .open("/tmp/hello.txt", libc::O_WRONLY | libc::O_CREAT)?
    .build()?;
let n = f.write("Hello, World!".as_bytes())?;

let mut f = fs.open("/tmp/hello.txt", libc::O_RDONLY)?.build()?;
let mut buf = vec![0; 1024];
let n = f.read(&mut buf)?;

let _ = fs.delete("/tmp/hello.txt", false)?;

Ok(())

} ```

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.

Acknowledgment

This project is highly inspired by clang-sys

License

Licensed under Apache License, Version 2.0.