*** Welcome to piglix ***

Apache ZooKeeper

Apache ZooKeeper
Developer(s) Apache Software Foundation
Stable release
3.4.10 / March 30, 2017 (2017-03-30)
Preview release
3.5.3-beta / April 17, 2017 (2017-04-17)
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 distributed hierarchical key-value store, which is used to provide a distributed configuration service, synchronization service, and naming registry for large distributed systems. ZooKeeper was a sub-project of Hadoop but is now a top-level 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 with updates are totally ordered. the ZooKeeper Atomic Broadcast (ZAB) protocol is the core of the system.

ZooKeeper is used by companies including Rackspace, Yahoo!,Odnoklassniki, Reddit and eBay as well as open source enterprise search systems like Solr.


...
Wikipedia

...