#logging #storage

commitlog

Sequential, disk-backed commit log library

13 releases

0.2.0 Nov 6, 2021
0.1.3 Mar 6, 2021
0.1.2 Jul 4, 2020
0.1.1 Aug 29, 2019
0.0.1 Nov 26, 2016

#736 in Data structures

Download history 84/week @ 2024-12-09 37/week @ 2024-12-16 8/week @ 2024-12-23 15/week @ 2024-12-30 35/week @ 2025-01-06 51/week @ 2025-01-13 69/week @ 2025-01-20 25/week @ 2025-01-27 138/week @ 2025-02-03 58/week @ 2025-02-10 37/week @ 2025-02-17 43/week @ 2025-02-24 21/week @ 2025-03-03 55/week @ 2025-03-10 37/week @ 2025-03-17 36/week @ 2025-03-24

153 downloads per month
Used in 3 crates

MIT license

105KB
2.5K SLoC

Commit Log

Sequential, disk-backed commit log library for Rust. The library can be used in various higher-level distributed abstractions on top of a distributed log such as Paxos, Chain Replication or Raft.

Crates.io Docs.rs Travis

Documentation

Usage

First, add this to your Cargo.toml:

[dependencies]
commitlog = "0.1"
extern crate commitlog;

use commitlog::*;

fn main() {
    // open a directory called 'log' for segment and index storage
    let opts = LogOptions::new("log");
    let mut log = CommitLog::new(opts).unwrap();

    // append to the log
    log.append("hello world").unwrap(); // offset 0
    log.append("second message").unwrap(); // offset 1

    // read the messages
    let messages = log.read(0, ReadLimit::default()).unwrap();
    for msg in messages.iter() {
        println!("{} - {}", msg.offset(), String::from_utf8_lossy(msg.payload()));
    }

    // prints:
    //    0 - hello world
    //    1 - second message
}

Prior Art

Dependencies

~0.5–0.8MB
~11K SLoC