#key-value-database #key-value-store #embedded-database #cache #data-file #disk-cache

ckydb

A simple fast memory-first thread-safe key-value embedded database that persists data on disk

1 unstable release

0.0.5 Jul 5, 2022

#2427 in Database interfaces

Custom license

82KB
1.5K SLoC

ckydb

A simple fast memory-first thread-safe key-value embedded database that persists data on disk.

It is read as 'skydb' This the rust implementation of ckydb

Quick Start

  • Create a new project and activate your virtual environment
cargo new ckydb_example
  • Add ckydb to the Cargo.toml as a dependency
[dependencies]
ckydb = { version = "0.0.5" } # put the appropriate version. 0.1.0 is just an example
  • Add the following code to the src/main.rs file
use ckydb::{connect, Controller};

fn main() {
    let mut db = connect("db", 4.0, 60.0).unwrap();
    let keys = ["hey", "hi", "yoo-hoo", "bonjour"].to_vec();
    let values = ["English", "English", "Slang", "French"].to_vec();

    // Setting the values
    println!("[Inserting key-value pairs]");
    for (k, v) in keys.clone().into_iter().zip(values) {
        let _ = db.set(k, v);
    }

    // Getting the values
    println!("[After insert]");
    for k in keys.clone() {
        let got = db.get(k).unwrap();
        println!("For key: {:?}, Got: {:?}", k, got);
    }

    // Deleting some values
    for k in &keys[2..] {
        let removed = db.delete(*k);
        println!("Removed: key: {:?}, resp: {:?}", k, removed);
    }

    for k in &keys {
        let got = db.get(*k);
        println!("[After delete: For key: {:?}, Got: {:?}", k, got);
    }

    // Deleting all values
    let cleared = db.clear();
    println!("Cleared: {:?}", cleared);

    println!("[After clear]");
    for k in &keys {
        let got = db.get(*k);
        println!("For key: {:?}, Got: {:?}", k, got);
    }
    db.close().expect("close");
}

  • Run the app and observe the terminal
cargo run

Examples

Some examples can be found in the /examples folder.

cargo run --example hello_ckydb

How to Run Tests

  • Clone the repo
git clone git@github.com:sopherapps/ckydb.git
  • Enter the rust implementation folder
cd ckydb/implementations/rs_ckydb
  • Run the test command
cargo test

Under the Hood

  • Every key has a TIMESTAMP prefix, added to it on creation. This TIMESTAMPED key is the one used to store data in a sorted way for easy retrieval.
  • The actual key known by user, however, is kept in the index. When ckydb is initialized, the index is loaded into memory from the index file (a ".idx" file). The index is basically a map of key: TIMESTAMPED-key
  • The TIMESTAMPED-key and its value are stored first in a log file (a ".log" file). This current log file has an in-memory copy we call memtable
  • When the current log file exceeds a predefined size (4MBs by default), it is converted to a sorted data file (a ".cky" file) and memtable refreshed and a new log file created.
  • The names of each ".cky" or ".log" file are the timestamps when they were created. Do note that conversion of ".log" to "cky" just changes the file extension.
  • There is always one ".log" file in the database folder. If on initialization, there is no ".log" file, a new one is created.
  • There is an in-memory sorted list of ".cky" files called data_files that is kept updated everytime a ".log" file is converted into ".cky".
  • The name of the current log (current_log_file) file is also kept in memory, and updated when a new log file is created.
  • There is also a ".del" file that holds all the key: TIMESTAMPED-key pairs that have been marked for deletion.
  • At a predefined interval (5 minutes by default), a background task deletes the values from ".cky" and ".log" files corresponding to the key: TIMESTAMPED-key pairs found in the ".del" file. Each deleted pair is then removed from the ".del" file.
  • On initial load, any keys in .del should have their values deleted in the corresponding ".log" or ".cky" files

Operations

  • On ckydb.set(key, value):

    • the corresponding TIMESTAMPED key is searched for in the index
    • if the key does not exist:
      • a new TIMESTAMPED key is created and added to the index with its user-defined key
      • the user-defined key and its TIMESTAMPED key are then added to the index file (".idx")
      • this TIMESTAMPED key and its value are then added to memtable.
      • this TIMESTAMPED key and its value are then added to the current log file (".log")
      • A check is made on the size of the log file. If the log file is bigger than the max size allowed, it is rolled into a .cky file and a new log file created, and the memtable refreshed.
    • if the key exists:
      • its timestamp is extracted and compared to the current_log file to see if it is later than the current_log file
      • if it is later or equal, memtable and the current log file are updated
      • else the timestamp is compared to cache's "start" and "stop" to see if it lies within the cache
      • if it exists in the cache, then the cache data and its corresponding data file are updated
      • else, the data file in which the timestamp exists is located within the data_files. This is done by finding the two data files between which the timestamp exists when the list is sorted in ascending order. The file to the left is the one containing the timestamp.
        • the key-values from the data file are then extracted and they new key-value inserted
        • the new data is then loaded into the cache
        • the new data is also loaded into the data file
    • If any error occurs on any of these steps, the preceding steps are reversed and the error returned/raised/thrown in the call
  • On ckydb.delete(key):

    • Its key: TIMESTAMPED-key pair is removed from the in-memory index.
    • Its key: TIMESTAMPED-key pair is removed from the ".idx" file
    • Its key: TIMESTAMPED-key is added to the ".del" file
    • If any error occurs on any of these steps, the preceding steps are reversed and the error returned/raised/thrown in the call
  • On ckydb.get(key):

    • the corresponding TIMESTAMPED key is searched for in the index
    • if the key does not exist, a NotFoundError is thrown/raised/returned.
    • if the key exists, its TIMESTAMP is extracted and checked if it is greater (later) than the name of the current log file.
    • if this TIMESTAMP is later, its value is quickly got from memtable in memory. If for some crazy reason, it does not exist there, a CorruptedDataError is thrown/raised/returned.
    • If this TIMESTAMP is earlier than the name of the current log file, the TIMESTAMP is compared to the range in the memory cache, if it falls there in, its value is got from cache. If the value is not found for some reason, a CorruptedDataError is thrown/raise/returned
    • Otherwise the ".cky" file whose name is earlier than the TIMESTAMP but whose neighbour to the right, in the in-memory sorted data_files list, is later than TIMESTAMP is loaded into an in-memory cache whose range is set to two ".cky" filenames between which it falls.
    • the value is then got from cache's data. If it is not found for some reason, a CorruptedDataError is thrown/raise/returned
  • On ckydb.clear():

    • memtable is reset
    • cache is reset
    • index in memory is reset
    • data_files in memory is reset
    • all files in the database folder are deleted
    • A new ".log" file is created

File formats

  • The file format of the ".idx" index files is just "key<key_value_separator>TIMESTAMPED-key" separated by a unique token e.g. "{&*/%}" and a key_value_separator e.g. "[><?&(^#]"
goat[><?&(^#]1655304770518678-goat{&*/%}hen[><?&(^#]1655304670510698-hen{&*/%}pig[><?&(^#]1655304770534578-pig{&*/%}fish[><?&(^#]1655303775538278-fish$%#@*&^&
  • The file format of the ".del" files is just "TIMESTAMPED-key" separated by a unique token e.g. "{&*/%}"
1655304770518678-goat{&*/%}1655304670510698-hen{&*/%}1655304770534578-pig{&*/%}1655303775538278-fish$%#@*&^&
  • The file format of the ".log" and ".cky" files is just "TIMESTAMPED-key<key_value_separator>value" separated by a unique token e.g. "{&*/%}" and a key_value_separator like "[><?&(^#]"
1655304770518678-goat[><?&(^#]678 months{&*/%}1655304670510698-hen[><?&(^#]567 months{&*/%}1655304770534578-pig[><?&(^#]70 months{&*/%}1655303775538278-fish[><?&(^#]8990 months$%#@*&^&

Note: There is configuration that one can enable to escape the "token" in any user-defined key or value just to avoid weird errors. However, the escaping is expensive and it is thus turned off by default.

Acknowledgments

  • We can do nothing without God (John 15: 5). Glory be to Him.
  • Some of these ideas were adapted from leveldb. Thanks.

License

Copyright (c) 2022 Martin Ahindura. All implementations are licensed under the MIT License

No runtime deps