hudi-core 0.3.0

The native Rust implementation for Apache Hudi
Documentation
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
//! Hudi read configurations.

use std::collections::HashMap;
use std::fmt::Display;
use std::str::FromStr;

use strum_macros::EnumIter;

use crate::config::error::ConfigError::{NotFound, ParseBool, ParseInt};
use crate::config::Result;
use crate::config::{ConfigParser, HudiConfigValue};

/// Configurations for reading Hudi tables.
///
/// **Example**
///
/// ```rust
/// use hudi_core::config::read::HudiReadConfig::InputPartitions;
/// use hudi_core::table::Table as HudiTable;
///
/// let options = [(InputPartitions, "2")];
/// HudiTable::new_with_options("/tmp/hudi_data", options)
/// ```
///

#[derive(Clone, Debug, PartialEq, Eq, Hash, EnumIter)]
pub enum HudiReadConfig {
    /// Start timestamp (exclusive) for [FileGroup] to filter records.
    FileGroupStartTimestamp,

    /// End timestamp (inclusive) for [FileGroup] to filter records.
    FileGroupEndTimestamp,

    /// Number of input partitions to read the data in parallel.
    ///
    /// For processing 100 files, [InputPartitions] being 5 will produce 5 partitions, with each partition having 20 files.
    InputPartitions,

    /// Parallelism for listing files on storage.
    ListingParallelism,

    /// When set to true, only [BaseFile]s will be read for optimized reads.
    /// This is only applicable to Merge-On-Read (MOR) tables.
    UseReadOptimizedMode,
}

impl AsRef<str> for HudiReadConfig {
    fn as_ref(&self) -> &str {
        match self {
            Self::FileGroupStartTimestamp => "hoodie.read.file_group.start_timestamp",
            Self::FileGroupEndTimestamp => "hoodie.read.file_group.end_timestamp",
            Self::InputPartitions => "hoodie.read.input.partitions",
            Self::ListingParallelism => "hoodie.read.listing.parallelism",
            Self::UseReadOptimizedMode => "hoodie.read.use.read_optimized.mode",
        }
    }
}

impl Display for HudiReadConfig {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_ref())
    }
}

impl ConfigParser for HudiReadConfig {
    type Output = HudiConfigValue;

    fn default_value(&self) -> Option<HudiConfigValue> {
        match self {
            HudiReadConfig::InputPartitions => Some(HudiConfigValue::UInteger(0usize)),
            HudiReadConfig::ListingParallelism => Some(HudiConfigValue::UInteger(10usize)),
            HudiReadConfig::UseReadOptimizedMode => Some(HudiConfigValue::Boolean(false)),
            _ => None,
        }
    }

    fn parse_value(&self, configs: &HashMap<String, String>) -> Result<Self::Output> {
        let get_result = configs
            .get(self.as_ref())
            .map(|v| v.as_str())
            .ok_or(NotFound(self.key()));

        match self {
            Self::FileGroupStartTimestamp => {
                get_result.map(|v| HudiConfigValue::String(v.to_string()))
            }
            Self::FileGroupEndTimestamp => {
                get_result.map(|v| HudiConfigValue::String(v.to_string()))
            }
            Self::InputPartitions => get_result
                .and_then(|v| {
                    usize::from_str(v).map_err(|e| ParseInt(self.key(), v.to_string(), e))
                })
                .map(HudiConfigValue::UInteger),
            Self::ListingParallelism => get_result
                .and_then(|v| {
                    usize::from_str(v).map_err(|e| ParseInt(self.key(), v.to_string(), e))
                })
                .map(HudiConfigValue::UInteger),
            Self::UseReadOptimizedMode => get_result
                .and_then(|v| {
                    bool::from_str(v).map_err(|e| ParseBool(self.key(), v.to_string(), e))
                })
                .map(HudiConfigValue::Boolean),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::config::read::HudiReadConfig::{
        InputPartitions, ListingParallelism, UseReadOptimizedMode,
    };

    #[test]
    fn parse_valid_config_value() {
        let options = HashMap::from([
            (InputPartitions.as_ref().to_string(), "100".to_string()),
            (ListingParallelism.as_ref().to_string(), "100".to_string()),
            (
                UseReadOptimizedMode.as_ref().to_string(),
                "true".to_string(),
            ),
        ]);
        assert_eq!(
            InputPartitions.parse_value(&options).unwrap().to::<usize>(),
            100
        );
        assert_eq!(
            ListingParallelism
                .parse_value(&options)
                .unwrap()
                .to::<usize>(),
            100
        );
        assert!(UseReadOptimizedMode
            .parse_value(&options)
            .unwrap()
            .to::<bool>());
    }

    #[test]
    fn parse_invalid_config_value() {
        let options = HashMap::from([
            (InputPartitions.as_ref().to_string(), "foo".to_string()),
            (ListingParallelism.as_ref().to_string(), "_100".to_string()),
            (UseReadOptimizedMode.as_ref().to_string(), "1".to_string()),
        ]);
        assert!(matches!(
            InputPartitions.parse_value(&options).unwrap_err(),
            ParseInt(_, _, _)
        ));
        assert_eq!(
            InputPartitions
                .parse_value_or_default(&options)
                .to::<usize>(),
            0
        );
        assert!(matches!(
            ListingParallelism.parse_value(&options).unwrap_err(),
            ParseInt(_, _, _)
        ));
        assert_eq!(
            ListingParallelism
                .parse_value_or_default(&options)
                .to::<usize>(),
            10
        );
        assert!(matches!(
            UseReadOptimizedMode.parse_value(&options).unwrap_err(),
            ParseBool(_, _, _)
        ));
        assert!(!UseReadOptimizedMode
            .parse_value_or_default(&options)
            .to::<bool>())
    }
}