Release 0.3.0 rc2
RATIS-517. Examples cannot be run after assembly.
6 files changed
tree: 89494e6e2bdedee15e26bcc15b46ffa8e29c1197
  1. dev-support/
  2. ratis-assembly/
  3. ratis-client/
  4. ratis-common/
  5. ratis-examples/
  6. ratis-grpc/
  7. ratis-hadoop/
  8. ratis-logservice/
  9. ratis-netty/
  10. ratis-proto/
  11. ratis-replicated-map/
  12. ratis-server/
  13. ratis-test/
  14. .gitignore
  15. BUILDING.md
  16. DEPLOY.md
  17. DISCLAIMER
  18. LICENSE
  19. NOTICE
  20. pom.xml
  21. README.md
  22. start-build-env.sh
README.md

Apache Ratis

Apache Ratis is a java library that implements the RAFT protocol [1]. The Raft paper can be accessed at (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.