RATIS-1303. Upgrade Ratis Thirdparty to 0.6.0 - addendum (#413)

1 file changed
tree: 5070985aff709511185dd24108be63418738003c
  1. .github/
  2. dev-support/
  3. ratis-assembly/
  4. ratis-client/
  5. ratis-common/
  6. ratis-docs/
  7. ratis-examples/
  8. ratis-experiments/
  9. ratis-grpc/
  10. ratis-hadoop/
  11. ratis-logservice/
  12. ratis-metrics/
  13. ratis-netty/
  14. ratis-proto/
  15. ratis-replicated-map/
  16. ratis-resource-bundle/
  17. ratis-server/
  18. ratis-server-api/
  19. ratis-test/
  20. ratis-tools/
  21. .asf.yaml
  22. .gitignore
  23. BUILDING.md
  24. DEPLOY.md
  25. DISCLAIMER
  26. LICENSE
  27. NOTICE
  28. pom.xml
  29. README.md
  30. start-build-env.sh
README.md

Apache Ratis

Apache Ratis is a Java library that implements the Raft protocol [1], where an extended version of the Raft paper is available 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, In Search of an Understandable Consensus Algorithm, 2014 USENIX Annual Technical Conference (USENIX ATC 14) (Philadelphia, PA), USENIX Association, 2014, pp. 305-319.