Skip to main content

alluxio

2 configuration options · available in Rust, Python, Node.js, Java

Quick start
use opendal::Operator;

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

let op = Operator::via_iter("alluxio", [
// root of this backend.
//
// All operations will happen under this root.
//
// default to `/` if not set.
// ("root".to_string(), "...".to_string()),

// endpoint of this backend.
//
// Endpoint must be full uri, mostly like `http://127.0.0.1:39999`.
// ("endpoint".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

General2
KeyTypeRequiredDescription
rootstringnoroot of this backend. All operations will happen under this root. default to / if not set.
endpointstringnoendpoint of this backend. Endpoint must be full uri, mostly like http://127.0.0.1:39999.