/baxos-consensus

This repository contains the go-lang implementation of the paper "Baxos: Backing off for Robust and Efficient Consensus"

Primary LanguageGoBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Baxos Consensus

This repository implements Baxos Consensus.

Baxos is a variant of Paxos. In leader-based Paxos (a.k.a. Multi-Paxos), a leader is elected and all the proposals are initiated by the leader. In contrast, in Baxos, each replica acts as a leader and propose simultaneously. When replicas experience contention, in the event when more than 1 proposer is proposing at the same time, Baxos uses random exponential backoff to avoid further collisions.

This repository uses Protocol Buffers. It requires the protoc compiler with the go output plugin installed.

This repository uses Redis and it should be installed with default options.

All implementations are tested in Ubuntu 20.04.3 LTS

run go get -u github.com/golang/protobuf/protoc-gen-go and go get -u google.golang.org/grpc to install protobuff and grpc

run protoc --go_out=. --go-grpc_out=. common/definitions.proto to generate stubs, if you change any proto file.

run go mod vendor to install dependencies

run go build -v -o ./client/bin/client ./client/ and go build -v -o ./replica/bin/replica ./replica/ to build the client and the replica

All the commands to run replicas and the clients are available in the integration-test/ directory