This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 444
Home
Randgalt edited this page Mar 1, 2012
·
18 revisions
Use links at right -———>
According to the ZooKeeper documentation
You will want to have a supervisory process that manages each of your ZooKeeper server processes (JVM).
Exhibitor is a Java supervisor system for ZooKeeper. It provides a number of features:
- Watches a ZK instance and makes sure it is running
- Performs periodic backups
- Perform periodic cleaning of ZK log directory
- A GUI explorer for viewing ZK nodes
Exhibitor is not a self-contained application. It is meant to be included into an application container of your choice. In addition to the Exhibitor artifacts you need to add:
- A container such as Tomcat, Jetty, etc.
- A JAX-RS implementation such as Jersey, RESTEasy, etc.
- The ZooKeeper server distribution
- A mechanism to share configuration values between instances
Exhibitor binaries are published to Maven Central.
GroupID/Org | ArtifactID/Name | Description |
---|---|---|
com.netflix.exhibitor | exhibitor-standalone | Self-containing, runnable version of Exhibitor |
com.netflix.exhibitor | exhibitor-core | Library version of Exhibitor that can be integrated into your application |
Contents
- Top
- Standalone Version
- WAR File
- Core/Library
- Features
- Shared Configuration
- Using Exhibitor
- REST API
- Contributions