| Crates.io | hdfs-native-object-store |
| lib.rs | hdfs-native-object-store |
| version | 0.15.0 |
| created_at | 2024-01-07 19:00:15.251609+00 |
| updated_at | 2025-08-17 23:40:27.900711+00 |
| description | object_store implementation for Native HDFS client |
| homepage | https://github.com/datafusion-contrib/hdfs-native-object-store |
| repository | https://github.com/datafusion-contrib/hdfs-native-object-store |
| max_upload_size | |
| id | 1091962 |
| size | 94,706 |
An object_store implementation for HDFS based on the native Rust hdfs-native library.
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.x | >=0.10, <0.12 | 0.10 |
| 0.13.x | >=0.10, <0.12 | 0.11 |
| 0.14.x | 0.12 | 0.11 |
| 0.15.x | >=0.12.2, <0.13 | 0.12 |
use hdfs_native_object_store::HdfsObjectStoreBuilder;
let store = HdfsObjectStoreBuilder::new().with_url("hdfs://localhost:9000").build()?;
See Documentation.