Apache ZooKeeper

Apache ZooKeeper
Developer(s) Apache Software Foundation
Stable release
3.4.11 / November 9, 2017 (2017-11-09)[1]
Preview release
3.5.3-beta / April 17, 2017 (2017-04-17)[1]
Written in Java
Operating system Cross-platform
Type Distributed computing
License Apache License 2.0
Website zookeeper.apache.org

Apache ZooKeeper is a software project of the Apache Software Foundation. It is essentially a centralized service for distributed systems to a hierarchical key-value store, which is used to provide a distributed configuration service, synchronization service, and naming registry for large distributed systems.[2] ZooKeeper was a sub-project of Hadoop but is now a top-level Apache project in its own right.

ZooKeeper's architecture supports high availability through redundant services. The clients can thus ask another ZooKeeper leader if the first fails to answer. ZooKeeper nodes store their data in a hierarchical name space, much like a file system or a tree data structure. Clients can read from and write to the nodes and in this way have a shared configuration service. ZooKeeper can be viewed as an atomic broadcast system, through which updates are totally ordered. The ZooKeeper Atomic Broadcast (ZAB) protocol is the core of the system.[3]

ZooKeeper is used by companies including Rackspace, Yahoo!,[4] Odnoklassniki, Reddit,[5] NetApp SolidFire[6], Facebook[7] and eBay as well as open source enterprise search systems like Solr.[8]

ZooKeeper was originally developed at Yahoo for streamlining the processes running on Big Data cluster by storing the status in local log files on the ZooKeeper servers. These servers communicate with the client machines to provide them the information. ZooKeeper was developed in order to fix the bugs that occurred while deploying distributed big data applications. Some of the prime features of Apache ZooKeeper are:

  • Reliable System: This system is very reliable as it keeps working even if a node fails.
  • Simple Architecture: The architecture of ZooKeeper is quite simple as there is a shared hierarchical namespace which helps coordinating the processes.
  • Fast Processing: ZooKeeper is especially fast in "read-dominant" workloads (i.e. workloads in which reads are much more common than writes).
  • Scalable: The performance of ZooKeeper can be improved by adding nodes.

Apache ZooKeeper Architecture

The basic terminologies that you need to know before knowing the architecture are:

  • Node: The systems installed on the cluster
  • ZNode: The nodes where the status is updated by other nodes in cluster
  • Client Applications: The tools that interact with the distributed applications
  • Server Applications: Allows the client applications to interact using a common interface

The services in the cluster are replicated and stored on a set of servers (called an "ensemble"), each of which maintains an in-memory database containing the entire data tree of state as well as a transaction log and snapshots stored persistently. Multiple client applications can connect to a server, and each client maintains a TCP connection through which it sends requests and heartbeats and receives responses and watch events for monitoring.[9]

Typical use cases

Client libraries

In addition to the client libraries included with the ZooKeeper distribution, a number of third party libraries such as Apache Curator and Kazoo are available that make using ZooKeeper easier, add additional functionality, additional programming languages, etc.

See also

References

  1. 1 2 "Apache ZooKeeper - Releases". Retrieved 2 February 2018.
  2. "Index - Apache ZooKeeper - Apache Software Foundation". cwiki.apache.org. Retrieved 2016-08-26.
  3. "Zookeeper Overview".
  4. "ZooKeeper/Powered By".
  5. "Why Reddit was down on Aug 11".
  6. "5 Big DaaS Challenges and How to Overcome Them | NetApp Newsroom". NetApp Newsroom. 2016-06-20. Retrieved 2017-05-24.
  7. "Location-Aware Distribution: Configuring servers at scale". Facebook Code. 2018-07-19. Retrieved 2018-07-20.
  8. "SolrCloud".
  9. "Zookeeper".
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.