-
Great work Konrad! I was curious to see how you had used Akka in this interesting project. Wrote a few minor comments. Let me know if you have any questions.
```
--- a/README.md
+++ b/README.md
@@ -7…
-
Hello,
I was just wondering what Bolt is planning for database compaction? I'm not sure if this is something designed into Lmdb, but I was just running some tests, putting a lot of data into a boltdb…
-
A discussion about the problem of consensus in distributed computing, focusing on the Raft algorithm developed by Diego Ongaro and John Ousterhout at Stanford University/
Where is that slash coming f…
-
I'm thinking having multiple leaders in a cluster for different roles would be a good way to balance load around a cluster. Any thoughts on how to associate a role to a cluster so you could do someth…
-
Raft is an attempt at making a consensus algorithm that is easily understandable(compared with Paxos). https://ramcloud.stanford.edu/wiki/download/attachments/11370504/raft.pdf
-
I'm using an Executor to call a Worker and do something else with the reply. However, my Worker, besides emitting a response back to the Executor:
``` java
worker.emit(replyData, receivedMessage);
``…
-
/cc: @ongardie