Apache ZooKeeper

Source: Wikipedia, the free encyclopedia.
Apache ZooKeeper
Stable release
3.8.1 / January 30, 2023; 13 months ago (2023-01-30)[1]
Apache License 2.0
Websitezookeeper.apache.org

Apache ZooKeeper is an open-source server for highly reliable distributed coordination of cloud applications.

Apache Software Foundation
.

ZooKeeper is essentially a

top-level Apache project
in its own right.

Overview

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.[4]

ZooKeeper is used by companies including

Solr and distributed database systems like Apache Pinot.[10][11]

ZooKeeper is modeled after Google's Chubby lock service[12][13] and was originally developed at Yahoo! for streamlining the processes running on big-data clusters 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 fairly reliable as it keeps working even if some nodes stop working.
  • 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.

Architecture

Some common terminologies regarding the ZooKeeper architecture:

  • 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.[14]

Use cases

Typical use cases for ZooKeeper are:

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.

Apache projects using ZooKeeper

See also

  • Hadoop

References

  1. ^ "Apache ZooKeeper - Releases". Retrieved 12 February 2023.
  2. ^ "Apache Zookeeper4". Retrieved 31 January 2021.
  3. ^ "Index - Apache ZooKeeper - Apache Software Foundation". cwiki.apache.org. Retrieved 2016-08-26.
  4. ^ "Zookeeper Overview".
  5. ^ "ZooKeeper/Powered By". Archived from the original on 2013-12-09. Retrieved 2012-01-25.
  6. ^ "Why Reddit was down on Aug 11". 16 August 2016.
  7. ^ "5 Big DaaS Challenges and How to Overcome Them | NetApp Newsroom". NetApp Newsroom. 2016-06-20. Retrieved 2017-05-24.[permanent dead link]
  8. ^ "Location-Aware Distribution: Configuring servers at scale". Facebook Code. 2018-07-19. Retrieved 2018-07-20.
  9. ^ "ZooKeeper at Twitter". Twitter Engineering Blog. 2018-10-11. Retrieved 2018-12-08.
  10. ^ "SolrCloud".
  11. ^ "Apache Pinot: Architecture".
  12. ^ Burrows, Mike (2006). "The Chubby lock service for loosely-coupled distributed systems". 7th USENIX Symposium on Operating Systems Design and Implementation (OSDI).
  13. ^ Chandra, Tushar Deepak; Griesemer, Robert; Redstone, Joshua (2007). "Paxos Made Live - An Engineering Perspective (2006 Invited Talk)". Google Research. Retrieved 2020-03-03.
  14. ^ "Zookeeper".

External links