Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 478 Bytes

File metadata and controls

20 lines (13 loc) · 478 Bytes

leaderElectionErlang

A leader election implementation among a cluster of nodes in Erlang.

Concurrency is achieved through actors.

The leader election model is based on the Raft Consensus Algorithm (Raft paper).

Build:

$ rebar3 compile

To run a cluster of nodes with Docker:

$ docker build -t leaderelectionerlang .
$ docker-compose up --build

Erlang