147 lines
4.8 KiB
Rust
147 lines
4.8 KiB
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
use super::{CF_BLOBS, RocksDbStore};
|
|
use crate::*;
|
|
use ::registry::schema::structs;
|
|
use rocksdb::{ColumnFamilyDescriptor, MergeOperands, OptimisticTransactionDB, Options};
|
|
use std::path::PathBuf;
|
|
use tokio::sync::oneshot;
|
|
|
|
impl RocksDbStore {
|
|
pub async fn open(config: structs::RocksDbStore) -> Result<Store, String> {
|
|
// Create the database directory if it doesn't exist
|
|
let idx_path: PathBuf = PathBuf::from(config.path);
|
|
std::fs::create_dir_all(&idx_path).map_err(|err| {
|
|
format!(
|
|
"Failed to create database directory {}: {:?}",
|
|
idx_path.display(),
|
|
err
|
|
)
|
|
})?;
|
|
|
|
let mut cfs = Vec::new();
|
|
|
|
// Counters
|
|
for subspace in [SUBSPACE_COUNTER, SUBSPACE_QUOTA, SUBSPACE_IN_MEMORY_COUNTER] {
|
|
let mut cf_opts = Options::default();
|
|
cf_opts.set_merge_operator_associative("merge", numeric_value_merge);
|
|
cfs.push(ColumnFamilyDescriptor::new(
|
|
std::str::from_utf8(&[subspace]).unwrap(),
|
|
cf_opts,
|
|
));
|
|
}
|
|
|
|
// Blobs
|
|
let mut cf_opts = Options::default();
|
|
cf_opts.set_enable_blob_files(true);
|
|
cf_opts.set_min_blob_size(config.blob_size);
|
|
cf_opts.set_enable_blob_gc(true);
|
|
cf_opts.set_blob_gc_age_cutoff(1.0);
|
|
cf_opts.set_blob_gc_force_threshold(0.5);
|
|
cfs.push(ColumnFamilyDescriptor::new(CF_BLOBS, cf_opts));
|
|
|
|
// Other cfs
|
|
for subspace in [
|
|
SUBSPACE_INDEXES,
|
|
SUBSPACE_ACL,
|
|
SUBSPACE_TASK_QUEUE,
|
|
SUBSPACE_DELETED_ITEMS,
|
|
SUBSPACE_BLOB_LINK,
|
|
SUBSPACE_IN_MEMORY_VALUE,
|
|
SUBSPACE_PROPERTY,
|
|
SUBSPACE_REGISTRY,
|
|
SUBSPACE_QUEUE_MESSAGE,
|
|
SUBSPACE_QUEUE_EVENT,
|
|
SUBSPACE_REPORT_OUT,
|
|
SUBSPACE_REPORT_IN,
|
|
SUBSPACE_LOGS,
|
|
SUBSPACE_TELEMETRY_SPAN,
|
|
SUBSPACE_TELEMETRY_METRIC,
|
|
SUBSPACE_SEARCH_INDEX,
|
|
SUBSPACE_SPAM_SAMPLES,
|
|
SUBSPACE_REGISTRY_IDX,
|
|
SUBSPACE_REGISTRY_PK,
|
|
SUBSPACE_DIRECTORY,
|
|
LEGACY_SUBSPACE_BITMAP_TEXT,
|
|
LEGACY_SUBSPACE_BITMAP_TAG,
|
|
] {
|
|
let cf_opts = Options::default();
|
|
cfs.push(ColumnFamilyDescriptor::new(
|
|
std::str::from_utf8(&[subspace]).unwrap(),
|
|
cf_opts,
|
|
));
|
|
}
|
|
|
|
let mut db_opts = Options::default();
|
|
db_opts.create_missing_column_families(true);
|
|
db_opts.create_if_missing(true);
|
|
db_opts.set_max_background_jobs(std::cmp::max(num_cpus::get() as i32, 3));
|
|
db_opts.increase_parallelism(std::cmp::max(num_cpus::get() as i32, 3));
|
|
db_opts.set_level_zero_file_num_compaction_trigger(1);
|
|
db_opts.set_level_compaction_dynamic_level_bytes(true);
|
|
//db_opts.set_keep_log_file_num(100);
|
|
//db_opts.set_max_successive_merges(100);
|
|
db_opts.set_write_buffer_size(config.buffer_size as usize);
|
|
|
|
Ok(Store::RocksDb(Arc::new(RocksDbStore {
|
|
db: OptimisticTransactionDB::open_cf_descriptors(&db_opts, idx_path, cfs)
|
|
.map_err(|err| format!("Failed to open database: {:?}", err))?
|
|
.into(),
|
|
worker_pool: rayon::ThreadPoolBuilder::new()
|
|
.num_threads(std::cmp::max(
|
|
config
|
|
.pool_workers
|
|
.filter(|v| *v > 0)
|
|
.map(|v| v as usize)
|
|
.unwrap_or_else(num_cpus::get),
|
|
4,
|
|
))
|
|
.build()
|
|
.map_err(|err| format!("Failed to build worker pool: {:?}", err))?,
|
|
})))
|
|
}
|
|
|
|
pub async fn spawn_worker<U, V>(&self, mut f: U) -> trc::Result<V>
|
|
where
|
|
U: FnMut() -> trc::Result<V> + Send,
|
|
V: Sync + Send + 'static,
|
|
{
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
self.worker_pool.scope(|s| {
|
|
s.spawn(|_| {
|
|
tx.send(f()).ok();
|
|
});
|
|
});
|
|
|
|
match rx.await {
|
|
Ok(result) => result,
|
|
Err(err) => Err(trc::EventType::Server(trc::ServerEvent::ThreadError).reason(err)),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn numeric_value_merge(
|
|
_key: &[u8],
|
|
value: Option<&[u8]>,
|
|
operands: &MergeOperands,
|
|
) -> Option<Vec<u8>> {
|
|
let mut value = if let Some(value) = value {
|
|
i64::from_le_bytes(value.try_into().ok()?)
|
|
} else {
|
|
0
|
|
};
|
|
|
|
for op in operands.iter() {
|
|
value += i64::from_le_bytes(op.try_into().ok()?);
|
|
}
|
|
|
|
let mut bytes = Vec::with_capacity(std::mem::size_of::<i64>());
|
|
bytes.extend_from_slice(&value.to_le_bytes());
|
|
Some(bytes)
|
|
}
|