This service can be used to:
root: Set the work directory for backendendpoint: Customizable endpoint settingYou can refer to [AlluxioBuilder]'s docs for more information
use opendal_core::Operator; use opendal_core::Result; use opendal_service_alluxio::Alluxio; #[tokio::main] async fn main() -> Result<()> { // create backend builder let mut builder = Alluxio::default() // set the storage bucket for OpenDAL .root("/") // set the endpoint for OpenDAL .endpoint("http://127.0.0.1:39999"); let op: Operator = Operator::new(builder)?.finish(); Ok(()) }