Crate hdfs_native_object_store
source ·Expand description
Object store implementation for the Native Rust HDFS client
Usage
use hdfs_native::Client;
use hdfs_native_object_store::HdfsObjectStore;
let client = Client::new("hdfs://localhost:9000")?;
let store = HdfsObjectStore::new(client);