Skip to content
/ goraft Public
forked from eatonphil/goraft

A basic Raft implementation in Go.

Notifications You must be signed in to change notification settings

gogim1/goraft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

goraft

A minimal implementation of Raft in Go.

NOT FOR PRODUCTION USE.

Things that are missing:

  • A half-decent persistence plan
  • Snapshotting/checkpointing and associated state transfer
  • Configuration change protocol
  • Rigged up to Jepsen
  • Surely much else

Simulator

Not particularly aggressive yet but does some minimal testing.

$ cd cmd/sim
$ go run main.go

Distributed Key-Value Store API

Try out the builtin distributed key-value API.

$ cd cmd/kvapi && go build
$ rm *.dat

Terminal 1

$ ./kvapi --node 1 --http :2021 --cluster "0,:3030;1,:3031;2,:3032"

Terminal 2

$ ./kvapi --node 1 --http :2021 --cluster "0,:3030;1,:3031;2,:3032"

Terminal 3

$ ./kvapi --node 2 --http :2021 --cluster "0,:3030;1,:3031;2,:3032"

Terminal 4

To set a key:

$ curl -v http://localhost:2020/set -d '{"key": "y", "value": "hello"}' -X POST

To get a key:

$ curl -v http://localhost:2021/get\?key\=y

References

Other useful implementations to peer at:

  • Hashicorp's Raft implementation in Go: Although it's often quite complicated to learn from since it actually is intended for production.
  • Eli Bendersky's Raft implementation in Go: Although it gets confusing because it uses negative numbers for terms whereas the paper does not.
  • Jing Yang's Raft implementation in Rust.

About

A basic Raft implementation in Go.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%