Crates.io | velarixdb |
lib.rs | velarixdb |
version | 0.0.16 |
source | src |
created_at | 2024-07-14 15:04:16.922335 |
updated_at | 2024-11-22 16:26:37.355908 |
description | An LSM Storage Engine focused on reduced IO amplification |
homepage | https://github.com/Gifted-s/velarixdb/blob/main/README.md |
repository | https://github.com/Gifted-s/velarixdb |
max_upload_size | |
id | 1303064 |
size | 1,519,233 |
VelarixDB is an LSM-based storage engine designed to significantly reduce IO amplification, resulting in better performance and durability for storage devices.
VelarixDB: Designed to reduce I/O amplification
VelarixDB is an ongoing project (not production ready) designed to optimize data movement during load times and compaction. Inspired by the WiscKey paper, WiscKey: Separating Keys from Values in SSD-conscious Storage, velarixdb aims to significantly enhance performance over traditional key-value stores.
During compaction in LevelDB or RocksDB, in the worst case, up to 10 SSTable files needs to be read, sorted and re-written since keys are not allowed to overlapp across all the sstables from Level 1 downwards. Suppose after merging SSTables in one level, the next level exceeds its threshold, compaction can cascade from Level 0 all the way to Level 6 meaning the overall write amplification can be up to 50 (ignoring the first compaction level).[ Reference -> Official LevelDB Compaction Process Docs ]. This repetitive data movement can cause significant wear on SSDs, reducing their lifespan due to the high number of write cycles. The goal is to minimize the amount of data moved during compaction, thereby reducing the amount of data re-written and extending the device's lifetime.
To address this, we focus on whether a key has been deleted or updated. Including values in the compaction process (which are often larger than keys) unnecessarily amplifies the amount of data read and written. Therefore, we store keys and values separately. Specifically, we map value offsets to the keys, represented as 32-bit integers.
This approach reduces the amount of data read, written, and moved during compaction, leading to improved performance and less wear on storage devices, particularly SSDs. By minimizing the data movement, we not only enhance the efficiency of the database but also significantly extend the lifespan of the underlying storage hardware.
According to the benchmarks presented in the WiscKey paper, implementations can outperform LevelDB and RocksDB by:
Based on the introduction and efficiency of async IO at the OS kernel level e.g io_uring for the Linux kernel, VelarixDB is designed for asynchronous runtime. In this case Tokio runtime. Tokio allows for efficient and scalable asynchronous operations, making the most of modern multi-core processors. Frankly, most OS File System does not provide async API currently but Tokio uses a thread pool to offload blocking file system operations. This means that even though the file system operations themselves are blocking at the OS level, Tokio can handle them without blocking the main async task executor. Tokio might adopt io_uring in the future. (We haven't benchmarked the async version therefore this is unstable and might be removed in a future version)
Please note that velarixdb is still under development and is not yet production-ready.
v2 is the most recent version (not experimental) and under active development, the src modules are for the experimental version
Put()
, Get()
, Delete()
, and Update()
operationsMutex
)cargo add velarixdb
use velarixdb::db::DataStore;
# use tempfile::tempdir;
#[tokio::main]
async fn main() {
let root = tempdir().unwrap();
let path = root.path().join("velarix");
let mut store = DataStore::open("big_tech", path).await.unwrap(); // handle IO error
store.put("apple", "tim cook").await;
store.put("google", "sundar pichai").await;
store.put("nvidia", "jensen huang").await;
store.put("microsoft", "satya nadella").await;
store.put("meta", "mark zuckerberg").await;
store.put("openai", "sam altman").await;
let entry1 = store.get("apple").await.unwrap(); // Handle error
let entry2 = store.get("google").await.unwrap();
let entry3 = store.get("nvidia").await.unwrap();
let entry4 = store.get("microsoft").await.unwrap();
let entry5 = store.get("meta").await.unwrap();
let entry6 = store.get("openai").await.unwrap();
let entry7 = store.get("***not_found_key**").await.unwrap();
assert_eq!(std::str::from_utf8(&entry1.unwrap().val).unwrap(), "tim cook");
assert_eq!(std::str::from_utf8(&entry2.unwrap().val).unwrap(), "sundar pichai");
assert_eq!(std::str::from_utf8(&entry3.unwrap().val).unwrap(), "jensen huang");
assert_eq!(std::str::from_utf8(&entry4.unwrap().val).unwrap(), "satya nadella");
assert_eq!(std::str::from_utf8(&entry5.unwrap().val).unwrap(), "mark zuckerberg");
assert_eq!(std::str::from_utf8(&entry6.unwrap().val).unwrap(), "sam altman");
assert!(entry7.is_none());
// Remove an entry
store.delete("apple").await.unwrap();
// Update an entry
let success = store.update("microsoft", "elon musk").await;
assert!(success.is_ok());
}
use serde::{Deserialize, Serialize};
use serde_json;
use velarixdb::db::DataStore;
use tempfile::tempdir;
#[tokio::main]
async fn main() {
let root = tempdir().unwrap();
let path = root.path().join("velarix");
let mut store = DataStore::open("big_tech", path).await.unwrap(); // handle IO error
#[derive(Serialize, Deserialize)]
struct BigTech {
name: String,
rank: i32,
}
let new_entry = BigTech {
name: String::from("Google"),
rank: 50,
};
let json_string = serde_json::to_string(&new_entry).unwrap();
let res = store.put("google", json_string).await;
assert!(res.is_ok());
let entry = store.get("google").await.unwrap().unwrap();
let entry_string = std::str::from_utf8(&entry.val).unwrap();
let big_tech: BigTech = serde_json::from_str(&entry_string).unwrap();
assert_eq!(big_tech.name, new_entry.name);
assert_eq!(big_tech.rank, new_entry.rank);
}
See here for practical examples