Skip to main content

dbfs

3 configuration options · available in Rust, Python

Quick start
use opendal::Operator;

let op = Operator::via_iter("dbfs", [
])?;
All configuration options (copy & trim)
Full reference
use opendal::Operator;

let op = Operator::via_iter("dbfs", [
// The root for dbfs.
// ("root".to_string(), "...".to_string()),

// The endpoint for dbfs.
// ("endpoint".to_string(), "...".to_string()),

// The token for dbfs.
// ("token".to_string(), "...".to_string()),

])?;

Every option is passed as a string key; OpenDAL parses it into the right type. Some services may require building the binding with the matching services-* feature enabled.

Configuration reference

General3
KeyTypeRequiredDescription
rootstringnoThe root for dbfs.
endpointstringnoThe endpoint for dbfs.
tokenstringnoThe token for dbfs.