risingwave_object_store/object/opendal_engine/
fs.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use std::sync::Arc;
16
17use opendal::Operator;
18use opendal::layers::LoggingLayer;
19use opendal::services::Fs;
20use risingwave_common::config::ObjectStoreConfig;
21
22use super::{MediaType, OpendalObjectStore};
23use crate::object::ObjectResult;
24use crate::object::object_metrics::ObjectStoreMetrics;
25use crate::object::opendal_engine::ATOMIC_WRITE_DIR;
26
27impl OpendalObjectStore {
28    /// create opendal fs engine.
29    pub fn new_fs_engine(
30        root: String,
31        config: Arc<ObjectStoreConfig>,
32        metrics: Arc<ObjectStoreMetrics>,
33    ) -> ObjectResult<Self> {
34        // Create fs backend builder.
35        let mut builder = Fs::default().root(&root);
36        if config.set_atomic_write_dir {
37            let atomic_write_dir = format!("{}/{}", root, ATOMIC_WRITE_DIR);
38            builder = builder.atomic_write_dir(&atomic_write_dir);
39        }
40
41        let op: Operator = Operator::new(builder)?
42            .layer(LoggingLayer::default())
43            .finish();
44        Ok(Self {
45            op,
46            media_type: MediaType::Fs,
47            config,
48            metrics,
49        })
50    }
51}