hudi_core/config/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
/*
* 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 Configurations.
use std::any::type_name;
use std::collections::HashMap;
use std::sync::Arc;
use crate::storage::utils::parse_uri;
use anyhow::Result;
use serde::{Deserialize, Serialize};
use url::Url;
pub mod internal;
pub mod read;
pub mod table;
pub mod utils;
pub const HUDI_CONF_DIR: &str = "HUDI_CONF_DIR";
/// This defines some common APIs for working with configurations in Hudi.
pub trait ConfigParser: AsRef<str> {
/// Configuration value type.
type Output;
/// Supplies the default value of the configuration.
fn default_value(&self) -> Option<Self::Output>;
/// To indicate if the configuration is required or not, this helps in validation.
fn is_required(&self) -> bool {
false
}
/// Validate the configuration by parsing the given [String] value and check if it is required.
fn validate(&self, configs: &HashMap<String, String>) -> Result<()> {
match self.parse_value(configs) {
Ok(_) => Ok(()),
Err(e) => {
if !self.is_required() && e.to_string().ends_with("not found") {
// TODO: introduce error type to avoid checking "not found"
Ok(())
} else {
Err(e)
}
}
}
}
/// Parse the [String] value to [Self::Output].
fn parse_value(&self, configs: &HashMap<String, String>) -> Result<Self::Output>;
/// Parse the [String] value to [Self::Output], or return the default value.
///
/// Panic if the default value is not defined.
fn parse_value_or_default(&self, configs: &HashMap<String, String>) -> Self::Output {
self.parse_value(configs).unwrap_or_else(|_| {
self.default_value()
.unwrap_or_else(|| panic!("No default value for config '{}'", self.as_ref()))
})
}
}
/// All possible data types for Hudi Configuration values.
#[derive(Clone, Debug)]
pub enum HudiConfigValue {
Boolean(bool),
Integer(isize),
UInteger(usize),
String(String),
List(Vec<String>),
}
impl HudiConfigValue {
/// Covert [HudiConfigValue] logical type to the representing data type in Rust.
///
/// - [`HudiConfigValue::Boolean`] -> [bool]
/// - [`HudiConfigValue::Integer`] -> [isize]
/// - [`HudiConfigValue::UInteger`] -> [usize]
/// - [`HudiConfigValue::String`] -> [String]
/// - [`HudiConfigValue::List`] -> [`Vec<String>`]
pub fn to<T: 'static + std::fmt::Debug + From<HudiConfigValue>>(self) -> T {
T::from(self)
}
/// A convenience method to convert [HudiConfigValue] to [Url] when the value is a [String] and is intended to be a URL.
/// Panic if the value is not a [String].
pub fn to_url(self) -> Result<Url> {
match self {
HudiConfigValue::String(v) => parse_uri(&v),
_ => panic!(
"Cannot cast {:?} to {}",
type_name::<Self>(),
type_name::<Url>()
),
}
}
}
impl From<HudiConfigValue> for bool {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Boolean(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for isize {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Integer(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for usize {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::UInteger(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for String {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Boolean(v) => v.to_string(),
HudiConfigValue::Integer(v) => v.to_string(),
HudiConfigValue::UInteger(v) => v.to_string(),
HudiConfigValue::String(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for Vec<String> {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::List(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
/// Hudi configuration container.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct HudiConfigs {
raw_options: Arc<HashMap<String, String>>,
}
impl HudiConfigs {
/// Create [HudiConfigs] using opitons in the form of key-value pairs.
pub fn new<I, K, V>(options: I) -> Self
where
I: IntoIterator<Item = (K, V)>,
K: AsRef<str>,
V: Into<String>,
{
let raw_options = options
.into_iter()
.map(|(k, v)| (k.as_ref().into(), v.into()))
.collect();
Self {
raw_options: Arc::new(raw_options),
}
}
/// Create an empty [HudiConfigs].
pub fn empty() -> Self {
Self {
raw_options: Arc::new(HashMap::new()),
}
}
/// Create a deep-copy of the configs as [String] options in the form of key-value pairs.
pub fn as_options(&self) -> HashMap<String, String> {
self.raw_options.as_ref().clone()
}
/// Validate the associated config using the given parser by execute the [ConfigParser::validate] method.
pub fn validate(&self, parser: impl ConfigParser<Output = HudiConfigValue>) -> Result<()> {
parser.validate(&self.raw_options)
}
/// Check if the given key exists in the configs.
pub fn contains(&self, key: impl AsRef<str>) -> bool {
self.raw_options.contains_key(key.as_ref())
}
/// Get value for the given config. Return [Result] with the value.
/// If the config is not found or value was not parsed properly, return [Err].
pub fn get(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> Result<HudiConfigValue> {
parser.parse_value(&self.raw_options)
}
/// Get value or default value. If the config has no default value, this will panic.
pub fn get_or_default(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> HudiConfigValue {
parser.parse_value_or_default(&self.raw_options)
}
/// Get value or default value. If the config has no default value, this will return [None].
pub fn try_get(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> Option<HudiConfigValue> {
let res = parser.parse_value(&self.raw_options);
match res {
Ok(v) => Some(v),
Err(_) => parser.default_value(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_new_using_hashmap() {
let mut options = HashMap::new();
options.insert("key1".to_string(), "value1".to_string());
options.insert("key2".to_string(), "value2".to_string());
let config = HudiConfigs::new(options.clone());
assert_eq!(*config.raw_options, options);
}
#[test]
fn test_new() {
let options = vec![("key1", "value1"), ("key2", "value2")];
let config = HudiConfigs::new(options);
let expected: HashMap<String, String> = vec![
("key1".to_string(), "value1".to_string()),
("key2".to_string(), "value2".to_string()),
]
.into_iter()
.collect();
assert_eq!(*config.raw_options, expected);
}
#[test]
fn test_empty() {
let config = HudiConfigs::empty();
assert!(config.raw_options.is_empty());
}
#[test]
fn test_as_options() {
let mut options = HashMap::new();
options.insert("key1".to_string(), "value1".to_string());
options.insert("key2".to_string(), "value2".to_string());
let config = HudiConfigs::new(options.clone());
let result = config.as_options();
assert_eq!(result, options);
}
}