An open API service indexing awesome lists of open source software.

https://github.com/resetius/miniraft

Simple Raft implementaion using Python
https://github.com/resetius/miniraft

Last synced: 11 months ago
JSON representation

Simple Raft implementaion using Python

Awesome Lists containing this project

README

          

# Raft

This is a simple Raft implementation using Python Programming Language.
For the implementation I use the reference raft paper: https://raft.github.io/raft.pdf

Usage:
```
$ python3 main.py 1 # start node 1
$ python3 main.py 2 # start node 2
$ python3 main.py 3 # start node 3
...
$ python3 client.py # start client
> type smth
... # see messages replication in nodes logs
```