Skip to content

Latest commit

 

History

History

hdfs-native-object-store

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Object store implementation for the Native Rust HDFS client

Usage

use hdfs_native::Client;
use hdfs_native_object_store::HdfsObjectStore;
use hdfs_native::Result;
fn main() -> Result<()> {
    let client = Client::new("hdfs://localhost:9000")?;
    let store = HdfsObjectStore::new(client);
Ok(())
}