freebsd-ports/devel/zookeeper/pkg-descr
Li-Wen Hsu 8a00a5dd18 - Update to 3.3.6
- Build cleanly with C, PYTHON and DOC options
- Improve rc script
- Do not install Windows cmd files
- Put docs to ${DOCSDIR}
- Put logs to /var/log/zookeeper
- Put pid file to /var/run/zookeeper/zookeeper.pid
- Use ${MASTER_SITE_APACHE} as MASTER_SITES
- Add LICENSE
- Add WWW

PR:		ports/171858
Submitted by:	lwhsu
Approved by:	gnn (maintainer)
2012-09-25 14:47:21 +00:00

16 lines
850 B
Text

ZooKeeper: A Distributed Coordination Service for Distributed Applications
ZooKeeper is a distributed, open-source coordination service for
distributed applications. It exposes a simple set of primitives that
distributed applications can build upon to implement higher level
services for synchronization, configuration maintenance, and groups
and naming. It is designed to be easy to program to, and uses a data
model styled after the familiar directory tree structure of file
systems. It runs in Java and has bindings for both Java and C.
Coordination services are notoriously hard to get right. They are
especially prone to errors such as race conditions and deadlock. The
motivation behind ZooKeeper is to relieve distributed applications the
responsibility of implementing coordination services from scratch.
WWW: http://zookeeper.apache.org/