#hdfs-client #object-store #hdfs #hadoop

hdfs-native-object-store

object_store implementation for Native HDFS client

9 releases (breaking)

0.12.1 Sep 28, 2024
0.11.0 Jun 19, 2024
0.8.0 Mar 21, 2024

#722 in Database interfaces

Download history 1442/week @ 2024-08-17 1690/week @ 2024-08-24 1697/week @ 2024-08-31 2215/week @ 2024-09-07 2249/week @ 2024-09-14 1914/week @ 2024-09-21 2725/week @ 2024-09-28 2920/week @ 2024-10-05 2332/week @ 2024-10-12 2462/week @ 2024-10-19 2263/week @ 2024-10-26 2153/week @ 2024-11-02 3055/week @ 2024-11-09 3075/week @ 2024-11-16 2865/week @ 2024-11-23 2532/week @ 2024-11-30

11,986 downloads per month
Used in 3 crates (2 directly)

Apache-2.0

25KB
459 lines

HDFS Native Object Store

An object_store implementation for HDFS based on the native Rust hdfs-native library.

Compatibility

Each release supports a certain minor release of both the object_store crate and the underlying hdfs-native client.

hdfs-native-object-store object_store hdfs-native
0.9.x 0.9 0.9
0.10.x 0.10 0.9
0.11.x 0.10 0.10
0.12.0 >=0.10, <0.12 0.10

Usage

use hdfs_native_object_store::HdfsObjectStore;
let store = HdfsObjectStore::with_url("hdfs://localhost:9000")?;

Documentation

See Documentation.


lib.rs:

object_store::ObjectStore implementation for the Native Rust HDFS client

Usage

use hdfs_native_object_store::HdfsObjectStore;
let store = HdfsObjectStore::with_url("hdfs://localhost:9000")?;

Dependencies

~14–27MB
~396K SLoC