IsuruBoyagane15 / distributed-consensus

Distributed consensus algorithms implemented using Apache Kafka as a message broker.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

distribute-consensus

Distributed consensus algorithms implemented using Kafka messaging.

There are two consensus algorithms implemented here.

Leader Election

Leader election algorithm implemented here is an round based algorithm. A round (round number = n) in leader election contains the set of state transitions happen while electing a single leader and until the failure of the leader. After that leader is dead a new leader election round(round number = n+1) is started. The separation of rounds' records in the Kafka log is done using the round numbers. Kafka records with same round number are the state transitions happened in that round.

Testing Procedure

n = given value for leader candidate thread count. t = given time period (in seconds).

  • Tester Starts leader candidate threads until (n) threads have been started. (with random time waits between thread starts)
  • Randomly start/kill threads for t time maintaining at least n*0.8 number of threads and at most n*1.2 number of threads in the election.
  • Kill all the remaining threads to finish the test run after time t.

Usage

  1. Build Tester using mvn clean install

  2. Run Zookeeper.

  3. Run Kafka.

    • (You can follow this Kafka quick start to start a single node Zookeeper and Kafka services)
  4. Run the Jar giving location to save the log, Kafka server address, kafka topic, a number of leader candidate threads(n) to start and test run time(t).

    java -Dpath=<locatoin to save the log file> -jar <location to the jar built in 1.> < kafka server address> <kafka topic> <maximum leader candidate thread count> <test time t>

    ex: java -Dpath=/home/JohnDoe/test0.log -jar Tester.jar localhost:9092 election 50 60

Distributed Lock

Distributed Lock algorithm implemented here has no rounds. In distributed lock algorithm the entire kafka log contains events of same algorithm execution. Therefore no need of separating rounds in the Kafka log (Here, Kafka log can be considered as a single round).

About

Distributed consensus algorithms implemented using Apache Kafka as a message broker.


Languages

Language:Java 100.0%