Real World Use of Zookeeper

JavaConfigurationApache ZookeeperDistributed

Java Problem Overview


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?

Java Solutions


Solution 1 - Java

Solution 2 - Java

HBase uses Zookeeper for coordinating activities its "head node" was responsible for prior to the current version. The move to using Zookeeper means the central control is no longer a single point of failure.

Zookeeper is very versatile; here is an example of using it to build a distributed concurrent queue:

http://blog.cloudera.com/blog/2009/05/building-a-distributed-concurrent-queue-with-apache-zookeeper/

You can of course also use it to create resource locks, etc, in a distributed system.

Solution 3 - Java

Old question, but since this page comes up first on a google search for zookeeper use cases, I figured it would be best to give an updated listing

  1. wikipedia
  2. zookeeper wiki
  3. real users

Solution 4 - Java

The Apache CXF implementation of DOSGi uses zookeeper for its service registration repository. Individual containers have a distributed software (dsw) bundle that listens for all service events and when a service status changes that has a property indicating distribution. The dsw talks to the discovery bundle which, in the reference implementation case, uses zookeeper to store service as ephemeral nodes. Other instances will look for changes to the node structure and register proxies on their local systems. The end result is you can code to plain OSGi and end up with transparent distribution.

Solution 5 - Java

Norbert is a good example from a scalable production system. I general, it integrates Netty, Protocol Buffers and Zookeeper into a lightweight framework for running clustered services. Protocol Buffers are used to specify your service API, Netty implements transport-layer abstractions and Zookeeper is essentially a fault-tolerant discovery service.

Every time a service instance is started Norbert registers it as available instance of a particular service type. From implementation perspective, it creates two Zookeeper trees:

  • "/ServiceName/members" which lists all known instances of the service
  • "/ServiceName/available" which lists currently available instances of the service

The most important property for each node is the url to use to connect to the corresponding service instance. It enables client-side load balancing - a Norbert client finds the list of urls for a given service name and attempt to connect to one of them is some order (e.g. round-robin or random).

Solution 6 - Java

There is a good article ZooKeeper - The King of Coordination about ZooKeeper at Elastic Cloud.

> At Found, for example, we use ZooKeeper extensively for discovery, > resource allocation, leader election and high priority notifications. > In this article, we'll introduce you to this King of Coordination and > look closely at how we use ZooKeeper at Found

Solution 7 - Java

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.

Solution 8 - Java

  • Storm is used by a number of companies (Twitter and Groupon being two of the better known) and relies on Zookeeper.
  • Kafka is used by Linkedin and relies on Zookeeper.

Storm uses Zookeeper to store all state so that it can recover from an outage in any of its (distributed) component services.

This allows the component services to be stateless and simply download or sync with the Zookeeper servers when configuration data is needed. If you have ever had to recover a production server you will know what a headache this can be!

Kafka queue consumers can use Zookeeper to store information (high water mark) on what has been consumed from the queue.

Solution 9 - Java

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

Solution 10 - Java

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)

Solution 11 - Java

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

Solution 12 - Java

http://www.datomic.com">datomic</a> 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

Solution 13 - Java

Here's some detail on how HBase uses ZooKeeper, including information on how they intend to use it in future. Generally they use it for eliminating SPOF on the region servers via Leader election implemented using ZooKeeper.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJonView Question on Stackoverflow
Solution 1 - Javadln385View Answer on Stackoverflow
Solution 2 - JavaSquareCogView Answer on Stackoverflow
Solution 3 - JavamankuView Answer on Stackoverflow
Solution 4 - JavaJohn EllinwoodView Answer on Stackoverflow
Solution 5 - JavandolgovView Answer on Stackoverflow
Solution 6 - JavaherodotView Answer on Stackoverflow
Solution 7 - JavaphuntView Answer on Stackoverflow
Solution 8 - JavaThomas BrattView Answer on Stackoverflow
Solution 9 - JavaliheyuanView Answer on Stackoverflow
Solution 10 - JavaOleksandr KovtunenkoView Answer on Stackoverflow
Solution 11 - JavaJohn RussellView Answer on Stackoverflow
Solution 12 - JavamavbozoView Answer on Stackoverflow
Solution 13 - JavaphuntView Answer on Stackoverflow