Release 0.2.0 -rc2
Change version for the version 0.2.0 -rc2
12 files changed
tree: 6d8f58f2233123ea22d009fe4be843fcf0f4ba50
  1. dev-support/
  2. ratis-assembly/
  3. ratis-client/
  4. ratis-common/
  5. ratis-examples/
  6. ratis-grpc/
  7. ratis-hadoop/
  8. ratis-hadoop-shaded/
  9. ratis-netty/
  10. ratis-proto-shaded/
  11. ratis-replicated-map/
  12. ratis-server/
  13. .gitignore
  14. BUILDING.md
  15. DEPLOY.md
  16. DISCLAIMER.txt
  17. LICENSE
  18. NOTICE
  19. pom.xml
  20. README.md
  21. start-build-env.sh
README.md

Ratis

Ratis is a java library that implements the RAFT protocol[1]. The Raft paper can be accessed at [this link] (https://raft.github.io/raft.pdf). The paper introduces Raft and states its motivations in following words:

Raft is a consensus algorithm for managing a replicated log. It produces a result equivalent to (multi-)Paxos, and it is as efficient as Paxos, but its structure is different from Paxos; this makes Raft more understandable than Paxos and also provides a better foundation for building practical systems.

Ratis aims to make raft available as a java library that can be used by any system that needs to use a replicated log. It provides pluggability for state machine implementations to manage replicated states. It also provides pluggability for Raft log, and rpc implementations to make it easy for integration with other projects. Another important goal is to support high throughput data ingest so that it can be used for more general data replication use cases.

Reference

[1] Diego Ongaro and John Ousterhout. 2014. In search of an understandable consensus algorithm. In Proceedings of the 2014 USENIX conference on USENIX Annual Technical Conference (USENIX ATC'14), Garth Gibson and Nickolai Zeldovich (Eds.). USENIX Association, Berkeley, CA, USA, 305-320.