#client #api-client #io #time #system #alluxio

alluxio-rs

rust alluxio rest API客户端

2个版本

0.1.1 2023年11月9日
0.1.0 2023年11月9日

#1360 in 文件系统

MIT许可证

21KB
401 代码行

alluxio-rs

Rust用于Alluxio文件系统API的Crate

用法/示例

use std::time::Duration;

use alluxio_rs::{client, option};
use tokio::io::BufReader;

#[tokio::main]
async fn main() {
    let path = "/test_path";
    let c = client::Client::new("localhost".to_string(), 39999, Duration::from_secs(10)).unwrap();

    let r = c.exists(path, option::Exists).await.unwrap();
    let s = "123";
    let d = s.as_bytes();
    let buf = BufReader::new(d);
    let id = c
        .create_file(path, option::CreateFile::default())
        .await
        .unwrap();
    c.write(id, BufReader::new(buf)).await.unwrap();
    c.close(id).await.unwrap();
    println!("{} {}", r, id);
}

致谢

依赖关系

~6–21MB
~281K SLoC