You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From Yi: "How about we have a GetWithQuorum in addition to Get; just like SetWithTTL in addition to Set?"
agree. Seems like we might be interested in using both Get and GetWithQuorum in the future.
Some more details for "quorum=true" etcd-io/etcd#741
Some inputs:
quorum=true means the read will go through etcd raft and ensures linearization, but brings some performance penalty.
Without quorum=true, etcd ensures linearization for one client since they do a read redirection to leader to ensure the client that send out the previous write operation can see the result by a subsequent read operation.(This needs to be verified by taking a look at etcd client)
Etcd attaches a index for each response. It is the logic clock in etcd. If we can make sure our clients always see monotonic increasing sequence of indexes, we can ensure linearization.
Seems like the issues are lost after migrating etcc repo. Reopen this.
The text was updated successfully, but these errors were encountered: