`
gaojingsong
  • 浏览: 1182072 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

【ZooKeeper 监控管理系统 ​Exhibitor】

阅读更多

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

A rich REST API

Exhibitor 是 ZooKeeper 实例监控,备份,恢复,清理和可视化工具, 是 ZooKeeper 的监控管理系统。

 

ZooKeeper :

ZooKeeper is a  distributed, open source coordination service for distributed applications.

It was started by Yahoo developers to overcome their issues in distributed applications and later on it was undertaken and developed by the Apache foundation.

 

 

Exhibitor

To supervise the ZooKeeper instances, periodic backups, checking nodes status and auto restart on znode failures we use a project called Exhibitor that was open sourced by Netflix.

Features of Exhibitor

 

Instance Monitoring

Each Exhibitor instance monitors the ZooKeeper server running on the same server. If ZooKeeper is not running, Exhibitor will write the zoo.cfg file (see Cluster-wide Configuration below) and start it. If ZooKeeper crashes for some reason, Exhibitor will restart it.

 

Backup/Restore

Backups in a ZooKeeper ensemble are more complicated than for a traditional data store (e.g. a RDBMS). Generally, most of the data in ZooKeeper is ephemeral. It would be harmful to blindly restore an entire ZooKeeper data set. What is needed is selective restoration to prevent accidental damage to a subset of the data set. Exhibitor enables this.

 

Exhibitor will periodically backup the ZooKeeper transaction files. Once backed up, you can index any of these transaction files. Once indexed, you can search for individual transactions and “replay” them to restore a given ZNode to ZooKeeper.

 

Log Cleanup

Exhibitor does this maintenance automatically.

0
0
分享到:
评论

相关推荐

    ZooKeeper监控管理系统​Exhibitor.zip

    Exhibitor 是 ZooKeeper 实例监控,备份,恢复,清理和可视化工具, 是 ZooKeeper 的监控管理系统。 标签:​Exhibitor

    开源监控管理zookeeper工具:exhibitor-1.6

    标签"zookeeper监控管理"和"exhibitor-1.6"强调了Exhibitor的主要功能和适用范围,它不仅能够监控Zookeeper的状态,包括节点状态、会话、配置变更等,还可以进行操作,例如添加、删除Zookeeper节点,更新配置,以及...

    Zookeeper监控管理工具

    目前市面上功能最强,性能最好,数据最全的一款Zookeeper监控软件工具,该工具运行在.Net Framework4及上版本的Windows环境下。绿色软件,不需要安装,直接运行。

    zookeeper 服务监控和管理

    在本文中,我们将深入探讨Zookeeper的服务监控与管理,以及如何有效地利用它来提升系统的稳定性和可扩展性。 一、Zookeeper的基本概念 1.1 ZooKeeper数据模型:Zookeeper的数据模型是一种树形结构,类似于文件系统...

    【Zookeeper管理工具】

    【Zookeeper管理工具】是一个关于分布式协调服务Zookeeper的管理平台,它提供了便捷的方式来监控、配置和管理Zookeeper集群。Zookeeper是Apache Hadoop项目的一部分,主要用于解决分布式环境中的命名服务、配置管理...

    zookeeper淘宝实现的监控

    目前开源世界中暂没有一个比较成熟的zookeeper-monitor,公司内部的各个zookeeper运行也都是无监控,无报表状态。于是开始zookeeper监控这块工作。 目前zookeeper-monitor能做哪些事情,讲到这个,首先来看看哪些...

    基于zookeeper 监控dubbo provider 下线,提供dubbo 服务下线 邮箱预警

    - 部署监控系统JAR,确保其能够访问到Zookeeper集群和邮件服务器。 - 配置监控参数,如检查频率、Zookeeper连接信息、邮件服务器设置等,根据实际环境调整。 7. **监控系统的扩展性**: - 除了邮件预警,还可以...

    zookeeper集群监控工具taokeeper

    总结来说,Taokeeper作为一款专业的Zookeeper集群监控工具,能够帮助运维团队更好地管理和维护Zookeeper集群,提升系统的稳定性和可靠性。其丰富的功能和灵活的配置选项,使得监控工作变得更加高效和精准,是现代...

    zookeeper服务器管理手册 (非常实用)

    ### Zookeeper服务器管理手册知识点详解 #### 一、概述 Zookeeper是一款开源的分布式协调服务框架,主要用于解决分布式环境中复杂的应用问题,如命名服务、配置管理、集群管理等。本书旨在帮助用户掌握Zookeeper的...

    zookeeper服务器管理手册-部署运维必备知识

    Zookeeper是由Apache软件基金会开发的一个开源项目,常用于分布式系统的数据存储、配置管理、命名服务、分布式同步等场景。本手册将深入探讨以下关键知识点: 1. **Zookeeper安装**:安装Zookeeper涉及到下载最新...

    zookeeper高可用shell脚本监测.

    在高可用Redis集群中,Zookeeper作为一个中心化的仲裁者,负责监控Redis节点的状态,确保数据的一致性和完整性。当Redis主节点发生故障时,Zookeeper能够快速检测到并触发故障转移,将从节点提升为主节点,从而避免...

    ZKInspector:zookeeper节点管理工具

    ZKInspector是一款强大的Zookeeper集群管理工具,专为方便开发者和管理员监控、管理和操作Zookeeper中的数据节点而设计。Zookeeper作为一个分布式协调服务,广泛应用于分布式系统中,如Hadoop、HBase等,而...

    zookeeper的ui监控服务zkui

    ZooKeeper UI 监控服务,简称 zkui,是一款针对 Apache ZooKeeper 集群进行可视化监控和管理的工具。ZooKeeper 是一个分布式的、开放源码的分布式应用程序协调服务,是 Google Chubby 的开源实现,广泛应用于分布式...

    zookeeper可视化工具

    在运维和开发过程中,为了更方便地管理和监控Zookeeper,出现了许多可视化工具。这些工具通过图形用户界面(GUI)提供对Zookeeper状态的直观展示,帮助用户查看节点信息、操作数据、监控集群状态以及进行故障排查。 ...

    zookeeper 图形管理工具

    "Zookeeper图形管理工具"则是为了方便开发者和管理员更直观地管理和监控Zookeeper集群而设计的。通过图形化界面,用户可以更便捷地进行各种操作,如查看节点信息、添加或修改数据、删除节点等,从而提高了工作效率和...

    zookeeper可视化管理工具

    在实际运维过程中,为了便于管理和监控 Zookeeper 集群,开发了多种可视化管理工具。这些工具通常具有友好的图形用户界面,能够帮助管理员更直观地查看和操作 Zookeeper 的节点数据、会话、watcher 等信息。 ### 1....

    Zookeeper管理工具

    Zookeeper管理工具是一款专为Apache ZooKeeper设计的可视化界面应用,它使得Zookeeper的管理和监控变得更加直观和便捷。Zookeeper是分布式协调服务的核心组件,广泛应用于分布式系统中,如Hadoop、HBase、Kafka等,...

    Zookeeper 管理工具

    ZooInspector,作为Zookeeper的图形化界面工具,它允许用户以树形结构直观地查看Zookeeper的数据节点(znode)和其属性,帮助开发者和管理员便捷地进行Zookeeper集群的监控和调试。ZooInspector的设计理念是简洁明了...

    redhat/centos/linux系统上zookeeper和kafka进程监控脚本

    如下所示,手动指定zookeeper和kafka的bin目录、配置文件以及需要添加定时任务的周期几个参数后,执行当前脚本,脚本会自动添加定时任务并开始监控zookeeper及kafka进程,如果进程不存在则重启并放入后台,存在则...

Global site tag (gtag.js) - Google Analytics