7 releases

new 0.3.0 May 16, 2024
0.2.4 May 15, 2024
0.1.1 May 16, 2023

#859 in Database interfaces

Download history 15/week @ 2024-01-25 11/week @ 2024-02-01 19/week @ 2024-02-08 28/week @ 2024-02-15 64/week @ 2024-02-22 48/week @ 2024-02-29 43/week @ 2024-03-07 64/week @ 2024-03-14 80/week @ 2024-03-21 70/week @ 2024-03-28 79/week @ 2024-04-04 45/week @ 2024-04-11 35/week @ 2024-04-18 108/week @ 2024-04-25 102/week @ 2024-05-02 137/week @ 2024-05-09

397 downloads per month

MIT/Apache

46KB
966 lines

WeeDB   crates-io-batch docs-badge rust-version-badge

A thin wrapper around RocksDB.

Example

use weedb::{rocksdb, Caches, ColumnFamily, ColumnFamilyOptions, Migrations, WeeDb};

// Describe tables group via macros.
//
// A group is parametrized with a table creation context.
weedb::tables! {
    pub struct MyTables<Caches> {
        pub my_table: MyTable,
        // ..and some other tables as fields...
    }
}

// Describe a column family.
struct MyTable;

impl ColumnFamily for MyTable {
    // Column family name
    const NAME: &'static str = "my_table";

    // Modify read options
    fn read_options(opts: &mut rocksdb::ReadOptions) {
        opts.set_verify_checksums(false);
    }

    // Modify write options
    fn write_options(opts: &mut rocksdb::WriteOptions) {
        // ...
    }
}

// Implement cf options setup for some specific context.
impl ColumnFamilyOptions<Caches> for MyTable {
    // Modify general options
    fn options(opts: &mut rocksdb::Options, caches: &mut Caches) {
        opts.set_write_buffer_size(128 * 1024 * 1024);

        // Use cache from the context
        let mut block_factory = rocksdb::BlockBasedOptions::default();
        block_factory.set_block_cache(&caches.block_cache);
        block_factory.set_data_block_index_type(rocksdb::DataBlockIndexType::BinaryAndHash);

        opts.set_block_based_table_factory(&block_factory);

        opts.set_optimize_filters_for_hits(true);
    }
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let tempdir = tempfile::tempdir()?;

    // Prepare caches
    let caches = Caches::with_capacity(10 << 23);

    // Prepare db
    let db = WeeDb::<MyTables>::builder(&tempdir, caches)
        .with_name("test")
        .with_metrics_enabled(true)
        .with_options(|opts, _ctx| {
            // Example configuration:

            opts.set_level_compaction_dynamic_level_bytes(true);

            // Compression opts
            opts.set_zstd_max_train_bytes(32 * 1024 * 1024);
            opts.set_compression_type(rocksdb::DBCompressionType::Zstd);

            // Logging
            opts.set_log_level(rocksdb::LogLevel::Error);
            opts.set_keep_log_file_num(2);
            opts.set_recycle_log_file_num(2);

            // Cfs
            opts.create_if_missing(true);
            opts.create_missing_column_families(true);
        })
        .build()?;

    // Prepare and apply migration
    let mut migrations = Migrations::with_target_version([0, 1, 0]);
    migrations.register([0, 0, 0], [0, 1, 0], |db| {
        // do some migration stuff
        Ok(())
    })?;

    db.apply(migrations)?;

    // Table usage example
    let my_table = &db.tables().my_table;
    my_table.insert(b"asd", b"123")?;
    assert!(my_table.get(b"asd")?.is_some());

    Ok(())
}

How to generate grafana dashboard

cd scripts
python3 -m venv venv
# activate venv according to your shell (source venv/bin/activate)
pip install -r requirements.txt
python rocksdb_metrics.py dashboard.json

Contributing

We welcome contributions to the project! If you notice any issues or errors, feel free to open an issue or submit a pull request.

License

Licensed under either of

at your option.

Dependencies

~29MB
~575K SLoC