-
Hi Antirez,
Can I ask, what consensus algorithm do you use in disque? Paxos or Raft or your home-make algorithm?
Thank you,
Dimi
-
We have an 0.9.4.1 cluster (stable release) of three nodes with a default retention policy as defined by telegraf (v0.1.9, also stable release), and it seems unable to keep up with the data load. In p…
-
When a node that is the current leader leaves the cluster it will do so without properly updating the cluster configuration. This happens because the state transition from LEADER to LEAVE prevents com…
-
I am curious how the implementation compares with raft? Did you have a look on it?
Also can we add dynamically a member and remove it from the cluster? How many participants can it handle?
-
A request from CSV WG to allow simple literals as a body.
-
Most message queues have durable messages for a good reason. If something happens to a machine you can turn one of the replicated nodes into a primary node (the process is known as failover and is imp…
-
Hello!
First of all, thanks a lot for this project.
My issue is:
Is it possible to spread updates of the peers list initiated in one node to others automatically?
You have this implementation
```
fu…
-
We need to introduce a concept of leader leases so a leader can take read-only actions without writing them to the raft log. This means
- Ensuring that no node calls an election without first waiting …
-
Our clustering implementation has a lot of limitations, both in performance/scalability, and operations. We have lots of open issues about various problems. Many of them are related on the product lev…
-
- Rename Range.IsLeader() to Range.HaveLeaderLease(). This method returns whether or not the replica has the leader lease. Only replicas which have the leader lease my respond to "CONSISTENT" read req…