Crate hdfs_native_object_store

Source
Expand description

object_store::ObjectStore implementation for the Native Rust HDFS client

§Usage

use hdfs_native_object_store::HdfsObjectStoreBuilder;
let store = HdfsObjectStoreBuilder::new()
    .with_url("hdfs://localhost:9000")
    .build()
    .unwrap();

Structs§

HdfsObjectStore
Interface for Hadoop Distributed File System.
HdfsObjectStoreBuilder
Builder for creating an HdfsObjectStore