Apache ZooKeeper
Developer(s) | Apache Software Foundation |
---|---|
Stable release |
3.4.9
/ September 3, 2016 |
Written in | Java |
Operating system | Cross-platform |
Type | Distributed computing |
License | Apache License 2.0 |
Website |
zookeeper |
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.[1] 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. Updates are totally ordered.[2]
ZooKeeper is used by companies including Rackspace, Yahoo!,[3] Odnoklassniki, Reddit[4] and eBay as well as open source enterprise search systems like Solr.[5]
Typical use cases
- Naming service
- Configuration management
- Synchronization
- Leader election
- Message Queue
- Notification system
See also
References
- ↑ "Index - Apache ZooKeeper - Apache Software Foundation". cwiki.apache.org. Retrieved 2016-08-26.
- ↑ "Zookeeper Overview".
- ↑ "ZooKeeper/Powered By".
- ↑ "Why Reddit was down on Aug 11".
- ↑ "SolrCloud".
External links
- Official website
- Article in highscalability.com
- Software Development Times article of ZooKeeper moving to Apache
- Eclipse ECF Discovery based on Apache ZooKeeper