I've been looking at Zookeeper recently and wondered whether anybody was using it currently and what they were specifically using it for storing.
The most common use case is for configuration information, but what kind of data and how much data are you storing?
Free Software Projects Powered by ZooKeeper:
Apache Projects Powered by ZooKeeper:
Source: https://cwiki.apache.org/confluence/display/ZOOKEEPER/PoweredBy
Neo4j uses Zookeeper their High Availability enterprise server! http://docs.neo4j.org/chunked/milestone/ha.html
Zookeeper was used for many things other than configuration. Here is a official list of implement distributed primitives using zookeeper.
https://zookeeper.apache.org/doc/current/recipes.html
Solr is also working to integrate ZooKeeper. Here you can see they are using for dynamic config, sharding, SPOF elimination (master/slave election), rebalancing, etc.
datomic uses apache zookeeper to manage riak based data storage.
In my case we are storing configuration files in zookeeper ensemble for cluster usage . We are using leader -> follower schema . So when one zookeeper down we are switched for another one (replicated mode)