mooreniemi / lol

A Raft implementation in Rust language. The name is not a joke.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lol

Crates.io documentation CI MIT licensed Tokei

A Raft implementation in Rust language. To support this project please give it a

Documentation

Features

  • Implements all basic Raft features: Replication, Leader Election, Log Compaction, Persistency, Dynamic Membership Change, Streaming Snapshot, etc.
  • Based on Tonic and efficient gRPC streaming is fully utilized in log replication and snapshot copying.
  • Phi Accrual Failure Detector is used in leader failure detection. This adaptive algorithm lets you not choose a fixed timeout number before deployment and makes it possible to deploy Raft node in Geo-distributed environment. This algorithm is also used in Akka.
  • Clear Abstractions: RaftApp is your application or state machine in Raft's context. RaftStorage is the abstraction of the backend storage with which both in-memory and persistent (backed by RocksDB) are supported.

Example

[dependencies]
lol-core = "0.7"
// Implement RaftApp for YourApp!
struct YourApp { ... }
impl RaftApp for YourApp {
    ...
}
let app = YourApp { ... };
let storage = ...; // Choose a backend from lol_core::storage
let core = RaftCore::new(app, storage, config, ...);
let service = lol_core::make_service(core);
tonic::transport::Server::builder()
    .add_service(service)
    .serve(socket).await;

Related Projects

Development

Use docker container to make an dev environment on your computer.

  • make to build the docker image
  • ./dev to start the dev container

then

  • cargo build to compile the entire project
  • make test to run the regression tests
  • make bench to run the benchmark tests

About

A Raft implementation in Rust language. The name is not a joke.

License:MIT License


Languages

Language:Rust 98.2%Language:Makefile 0.7%Language:Dockerfile 0.7%Language:Ruby 0.3%Language:Shell 0.1%