Real World Use of Zookeeper [closed]

2020-05-10 23:44发布

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?

13条回答
兄弟一词,经得起流年.
3楼-- · 2020-05-11 00:23

Neo4j uses Zookeeper their High Availability enterprise server! http://docs.neo4j.org/chunked/milestone/ha.html

查看更多
对你真心纯属浪费
4楼-- · 2020-05-11 00:24

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

查看更多
走好不送
5楼-- · 2020-05-11 00:25

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.

查看更多
等我变得足够好
6楼-- · 2020-05-11 00:27

datomic uses apache zookeeper to manage riak based data storage.

Because Riak supports only eventual consistency at this time, a Datomic system running on Riak also utilizes Apache ZooKeeper, a highly-available coordination service. Datomic uses ZooKeeper for transactor failover coordination, and for the handful of keys per database that need to be updated with CAS. source: http://blog.datomic.com/2012/11/riak-and-couchbase-support.html

查看更多
我欲成王,谁敢阻挡
7楼-- · 2020-05-11 00:28

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)

查看更多
登录 后发表回答