https://github.com/dlarocque/raft
Raft consensus algorithm
https://github.com/dlarocque/raft
consensus-algorithm distributed-systems
Last synced: 5 months ago
JSON representation
Raft consensus algorithm
- Host: GitHub
- URL: https://github.com/dlarocque/raft
- Owner: dlarocque
- Created: 2023-01-27T21:55:21.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-03T04:55:28.000Z (almost 3 years ago)
- Last Synced: 2024-12-28T07:20:14.752Z (about 1 year ago)
- Topics: consensus-algorithm, distributed-systems
- Language: Go
- Homepage:
- Size: 91.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raft
Based off of MIT Distributed Systems Lab 2: https://pdos.csail.mit.edu/6.824/labs/lab-raft.html
## Run tests
In `internal/raft`,
```sh
go test
```
## Running Tests With Logging
If you have `internal/raft/dslogs` in your path,
```sh
VERBOSE=1 go test | dslogs -c
```
To run a specific test with logs,
```sh
VERBOSE=1 go test -run | dslogs -c
```