NiftySoft / k8s-gossipcar

Kubernetes sidecar providing a lightweight eventually-consistent key-value store.
MIT License
1 stars 0 forks source link

Add ability to delete keys via UDP broadcast followed by ACK. #1

Open kalexmills opened 6 years ago

kalexmills commented 6 years ago

Broadcast includes version of the key. All peers send back their version. If no higher version is received, the delete is committed. If a higher version is received, the commit is aborted.

2PC is used for this action.