#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

#780 in Database interfaces

Download history 2493/week @ 2024-10-08 2438/week @ 2024-10-15 2338/week @ 2024-10-22 2192/week @ 2024-10-29 2457/week @ 2024-11-05 2996/week @ 2024-11-12 3439/week @ 2024-11-19 2566/week @ 2024-11-26 2595/week @ 2024-12-03 3350/week @ 2024-12-10 2677/week @ 2024-12-17 1591/week @ 2024-12-24 2450/week @ 2024-12-31 3941/week @ 2025-01-07 3558/week @ 2025-01-14 2259/week @ 2025-01-21

12,713 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
~407K SLoC