libkv
libkv copied to clipboard
Distributed key/value store abstraction library
correct h1, h2
related to #89
A Kubernetes ConfigMap (or Secret) driver would be really handy for applications that already use libkv (like [traefik](https://github/containous/traefik)), and supports almost the whole interface. | Calls | Kubernetes | Notes...
I use `github.com/docker/leadership` with etcd store. When there is only 1 candidate, if the networks break down(i.e. use iptables) and then recover, the candidate cannot get the lock. The reason...
Writes to a new Zookeepr znode should take advantage of Zookeeper's atomic create + write primitive. If not, it is possible that a read that was triggered by a watch...
Signed-off-by: Taylor Skinner
This is a following up discussion on the design review of redis driver. the original feature requirements are discussed here: https://github.com/docker/libkv/issues/9 For store interface, please refer to here: https://github.com/docker/libkv/blob/master/store/store.go#L63 [Redis](http://redis.io/)...
Upgrades travis base image to trusty. Adds a wrapper script to start zookeeper which gets stuck during initialization otherwise for unknown reasons.
The Lock abstraction is inconsistent across distributed backends mostly because etcd expects the key not to exist for the mechanism to work. This is due to the custom Lock implementation...