HDFS Native Client in Rust based on hdfs-sys.
```rust use std::io::{Read, Write};
use hdrs::Client;
fn main() -> Result<(), Box
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(())
} ```
Check out the CONTRIBUTING.md guide for more details on getting started with contributing to this project.
Submit issues for bug report or asking questions in discussion.
This project is highly inspired by clang-sys
Licensed under Apache License, Version 2.0.