1. 23 May, 2018 1 commit
  2. 17 May, 2018 4 commits
  3. 16 May, 2018 7 commits
  4. 13 May, 2018 1 commit
  5. 06 May, 2018 1 commit
  6. 02 May, 2018 1 commit
  7. 25 Apr, 2018 1 commit
  8. 11 Apr, 2018 2 commits
  9. 07 Mar, 2018 2 commits
    • Yossi Gottlieb's avatar
      Ignore RequestVote when leader is established. · 6cac5767
      Yossi Gottlieb authored
      This behavior is described in the original Raft paper and is required to
      prevent removed nodes from disrupting the cluster.
      
      This causes other problems though, as a split node may trigger election
      which is rejected but leaves it with a future term.  The generally
      accepted solution for this appears to be the use of PreVote RPC to avoid
      election that can never succeed.
      6cac5767
    • Yossi Gottlieb's avatar
      Remove duplicate raft_get_last_applied_entry(). · 5e3cde59
      Yossi Gottlieb authored
      This fails the fuzzer tests.
      5e3cde59
  10. 04 Mar, 2018 2 commits
    • Yossi Gottlieb's avatar
      Add a per-entry custom user data field. · 519d47ad
      Yossi Gottlieb authored
      This is useful to allow leaders to pass context between
      raft_recv_entry() and a subsequent execution of the entry (after it was
      committed) as an applylog callback.
      
      This allows an optimized use pattern when entries received locally on
      the leader can be used without going through an unnecessary
      deserialization.
      519d47ad
    • Yossi Gottlieb's avatar
      Add custom heap management hooks. · b4430b25
      Yossi Gottlieb authored
      b4430b25
  11. 09 Jan, 2018 2 commits
  12. 08 Jan, 2018 4 commits
  13. 29 Dec, 2017 2 commits
  14. 21 Nov, 2017 10 commits