mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-06 13:27:43 +00:00
4559baaeeb
- Remove reed-solomon-erasure dependency and all related code - Simplify ReedSolomonEncoder from enum to struct with SIMD-only implementation - Eliminate all conditional compilation (#[cfg(feature = ...)]) - Add instance caching with RwLock-based encoder/decoder reuse - Implement reset mechanism to avoid unnecessary allocations - Ensure thread safety with proper cache management - Update documentation and benchmark scripts for SIMD-only approach - Apply code formatting across all files Breaking Changes: - Removes support for reed-solomon-erasure feature flag - API remains compatible but implementation is now SIMD-only Performance Impact: - Improved encoding/decoding performance through SIMD optimization - Reduced memory allocations via instance caching - Enhanced thread safety and concurrency support
217 lines
6.9 KiB
Rust
217 lines
6.9 KiB
Rust
use super::{Config, GLOBAL_StorageClass, storageclass};
|
|
use crate::disk::RUSTFS_META_BUCKET;
|
|
use crate::error::{Error, Result};
|
|
use crate::store_api::{ObjectInfo, ObjectOptions, PutObjReader, StorageAPI};
|
|
use http::HeaderMap;
|
|
use lazy_static::lazy_static;
|
|
use rustfs_utils::path::SLASH_SEPARATOR;
|
|
use std::collections::HashSet;
|
|
use std::sync::Arc;
|
|
use tracing::{error, warn};
|
|
|
|
pub const CONFIG_PREFIX: &str = "config";
|
|
const CONFIG_FILE: &str = "config.json";
|
|
|
|
pub const STORAGE_CLASS_SUB_SYS: &str = "storage_class";
|
|
pub const DEFAULT_KV_KEY: &str = "_";
|
|
|
|
lazy_static! {
|
|
static ref CONFIG_BUCKET: String = format!("{}{}{}", RUSTFS_META_BUCKET, SLASH_SEPARATOR, CONFIG_PREFIX);
|
|
static ref SubSystemsDynamic: HashSet<String> = {
|
|
let mut h = HashSet::new();
|
|
h.insert(STORAGE_CLASS_SUB_SYS.to_owned());
|
|
h
|
|
};
|
|
}
|
|
pub async fn read_config<S: StorageAPI>(api: Arc<S>, file: &str) -> Result<Vec<u8>> {
|
|
let (data, _obj) = read_config_with_metadata(api, file, &ObjectOptions::default()).await?;
|
|
Ok(data)
|
|
}
|
|
|
|
pub async fn read_config_with_metadata<S: StorageAPI>(
|
|
api: Arc<S>,
|
|
file: &str,
|
|
opts: &ObjectOptions,
|
|
) -> Result<(Vec<u8>, ObjectInfo)> {
|
|
let h = HeaderMap::new();
|
|
let mut rd = api
|
|
.get_object_reader(RUSTFS_META_BUCKET, file, None, h, opts)
|
|
.await
|
|
.map_err(|err| {
|
|
if err == Error::FileNotFound || matches!(err, Error::ObjectNotFound(_, _)) {
|
|
Error::ConfigNotFound
|
|
} else {
|
|
warn!("read_config_with_metadata: err: {:?}, file: {}", err, file);
|
|
err
|
|
}
|
|
})?;
|
|
|
|
let data = rd.read_all().await?;
|
|
|
|
if data.is_empty() {
|
|
return Err(Error::ConfigNotFound);
|
|
}
|
|
|
|
Ok((data, rd.object_info))
|
|
}
|
|
|
|
pub async fn save_config<S: StorageAPI>(api: Arc<S>, file: &str, data: Vec<u8>) -> Result<()> {
|
|
save_config_with_opts(
|
|
api,
|
|
file,
|
|
data,
|
|
&ObjectOptions {
|
|
max_parity: true,
|
|
..Default::default()
|
|
},
|
|
)
|
|
.await
|
|
}
|
|
|
|
pub async fn delete_config<S: StorageAPI>(api: Arc<S>, file: &str) -> Result<()> {
|
|
match api
|
|
.delete_object(
|
|
RUSTFS_META_BUCKET,
|
|
file,
|
|
ObjectOptions {
|
|
delete_prefix: true,
|
|
delete_prefix_object: true,
|
|
..Default::default()
|
|
},
|
|
)
|
|
.await
|
|
{
|
|
Ok(_) => Ok(()),
|
|
Err(err) => {
|
|
if err == Error::FileNotFound || matches!(err, Error::ObjectNotFound(_, _)) {
|
|
Err(Error::ConfigNotFound)
|
|
} else {
|
|
Err(err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
pub async fn save_config_with_opts<S: StorageAPI>(api: Arc<S>, file: &str, data: Vec<u8>, opts: &ObjectOptions) -> Result<()> {
|
|
if let Err(err) = api
|
|
.put_object(RUSTFS_META_BUCKET, file, &mut PutObjReader::from_vec(data), opts)
|
|
.await
|
|
{
|
|
error!("save_config_with_opts: err: {:?}, file: {}", err, file);
|
|
return Err(err);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn new_server_config() -> Config {
|
|
Config::new()
|
|
}
|
|
|
|
async fn new_and_save_server_config<S: StorageAPI>(api: Arc<S>) -> Result<Config> {
|
|
let mut cfg = new_server_config();
|
|
lookup_configs(&mut cfg, api.clone()).await;
|
|
save_server_config(api, &cfg).await?;
|
|
|
|
Ok(cfg)
|
|
}
|
|
|
|
fn get_config_file() -> String {
|
|
format!("{}{}{}", CONFIG_PREFIX, SLASH_SEPARATOR, CONFIG_FILE)
|
|
}
|
|
|
|
/// Handle the situation where the configuration file does not exist, create and save a new configuration
|
|
async fn handle_missing_config<S: StorageAPI>(api: Arc<S>, context: &str) -> Result<Config> {
|
|
warn!("Configuration not found ({}): Start initializing new configuration", context);
|
|
let cfg = new_and_save_server_config(api).await?;
|
|
warn!("Configuration initialization complete ({})", context);
|
|
Ok(cfg)
|
|
}
|
|
|
|
/// Handle configuration file read errors
|
|
fn handle_config_read_error(err: Error, file_path: &str) -> Result<Config> {
|
|
error!("Read configuration failed (path: '{}'): {:?}", file_path, err);
|
|
Err(err)
|
|
}
|
|
|
|
pub async fn read_config_without_migrate<S: StorageAPI>(api: Arc<S>) -> Result<Config> {
|
|
let config_file = get_config_file();
|
|
|
|
// Try to read the configuration file
|
|
match read_config(api.clone(), &config_file).await {
|
|
Ok(data) => read_server_config(api, &data).await,
|
|
Err(Error::ConfigNotFound) => handle_missing_config(api, "Read the main configuration").await,
|
|
Err(err) => handle_config_read_error(err, &config_file),
|
|
}
|
|
}
|
|
|
|
async fn read_server_config<S: StorageAPI>(api: Arc<S>, data: &[u8]) -> Result<Config> {
|
|
// If the provided data is empty, try to read from the file again
|
|
if data.is_empty() {
|
|
let config_file = get_config_file();
|
|
warn!("Received empty configuration data, try to reread from '{}'", config_file);
|
|
|
|
// Try to read the configuration again
|
|
match read_config(api.clone(), &config_file).await {
|
|
Ok(cfg_data) => {
|
|
// TODO: decrypt
|
|
let cfg = Config::unmarshal(&cfg_data)?;
|
|
return Ok(cfg.merge());
|
|
}
|
|
Err(Error::ConfigNotFound) => return handle_missing_config(api, "Read alternate configuration").await,
|
|
Err(err) => return handle_config_read_error(err, &config_file),
|
|
}
|
|
}
|
|
|
|
// Process non-empty configuration data
|
|
let cfg = Config::unmarshal(data)?;
|
|
Ok(cfg.merge())
|
|
}
|
|
|
|
pub async fn save_server_config<S: StorageAPI>(api: Arc<S>, cfg: &Config) -> Result<()> {
|
|
let data = cfg.marshal()?;
|
|
|
|
let config_file = get_config_file();
|
|
|
|
save_config(api, &config_file, data).await
|
|
}
|
|
|
|
pub async fn lookup_configs<S: StorageAPI>(cfg: &mut Config, api: Arc<S>) {
|
|
// TODO: from etcd
|
|
if let Err(err) = apply_dynamic_config(cfg, api).await {
|
|
error!("apply_dynamic_config err {:?}", &err);
|
|
}
|
|
}
|
|
|
|
async fn apply_dynamic_config<S: StorageAPI>(cfg: &mut Config, api: Arc<S>) -> Result<()> {
|
|
for key in SubSystemsDynamic.iter() {
|
|
apply_dynamic_config_for_sub_sys(cfg, api.clone(), key).await?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn apply_dynamic_config_for_sub_sys<S: StorageAPI>(cfg: &mut Config, api: Arc<S>, subsys: &str) -> Result<()> {
|
|
let set_drive_counts = api.set_drive_counts();
|
|
if subsys == STORAGE_CLASS_SUB_SYS {
|
|
let kvs = cfg.get_value(STORAGE_CLASS_SUB_SYS, DEFAULT_KV_KEY).unwrap_or_default();
|
|
|
|
for (i, count) in set_drive_counts.iter().enumerate() {
|
|
match storageclass::lookup_config(&kvs, *count) {
|
|
Ok(res) => {
|
|
if i == 0 && GLOBAL_StorageClass.get().is_none() {
|
|
if let Err(r) = GLOBAL_StorageClass.set(res) {
|
|
error!("GLOBAL_StorageClass.set failed {:?}", r);
|
|
}
|
|
}
|
|
}
|
|
Err(err) => {
|
|
error!("init storage class err:{:?}", &err);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|