【Zookeeper】what is Zookeeper?

官网地址:https://zookeeper.apache.org/https://zookeeper.apache.org/

以下来自官网的介绍

ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. All of these kinds of services are used in some form or another by distributed applications. Each time they are implemented there is a lot of work that goes into fixing the bugs and race conditions that are inevitable. Because of the difficulty of implementing these kinds of services, applications initially usually skimp on them, which make them brittle in the presence of change and difficult to manage. Even when done correctly, different implementations of these services lead to management complexity when the applications are deployed.

ZooKeeper is a centralized service for maintaining configuration information , naming, providing distributed synchronization, and providing group services.

Zookeeper 是一个集中式服务,用于维护配置信息命名提供分布式同步 以及提供组服务
All of these kinds of services are used in some form or another by distributed applications.

所有这些类型的服务都以某种形式被分布式应用程序所使用
Each time they are implemented there is a lot of work that goes into fixing the bugs and race conditions that are inevitable.

每次实现这些服务时,都需要做大量的工作来修复不可避免的错误和竞态条件。
Because of the difficulty of implementing these kinds of services, applications initially usually skimp on them, which make them brittle in the presence of change and difficult to manage.

由于实现这些服务的难度很大,应用程序通常会在这方面偷工减料,这使得它们在发生变更

时变得脆弱且难。
Even when done correctly, different implementations of these services lead to management complexity when the applications are deployed.

即使正确实现了这些服务,当应用程序部署时,这些服务的不同实现也会导致管理上的复杂性。

相关推荐
乌萨奇也要立志学C++5 分钟前
【Linux】网络基础 从零理解网络通信:局域网、跨网传输与 Socket 预备知识
linux·服务器·网络
RisunJan2 小时前
Linux命令-slabtop(实时显示内核 slab 缓存信息)
linux
蚰蜒螟4 小时前
从内核源码看Linux启动:chroot、execve与MS_MOVE的协奏曲
linux·服务器·网络
酷可达拉斯4 小时前
自动化运维-ansible配置文件与主机清单
linux·运维·自动化·ansible
影视飓风TIM5 小时前
Linux下C语言缓冲区原理 + Git版本控制
linux·c语言·git
来者皆善5 小时前
ZYNQ linux上使用 USB CDC ACM
linux·运维·服务器
Dawn-bit7 小时前
Linux磁盘分区与Swap和磁盘故障查询
linux·运维·服务器·网络·云计算
无足鸟ICT8 小时前
【RHCA+】$[]
linux·运维·服务器
运维技术小记9 小时前
国产化环境配置 VNC 远程桌面:麒麟 V10 实战
linux·运维·服务器
xiaoye-duck9 小时前
《Linux系统编程》Linux 系统多线程(八): C++ 高并发线程池全链路深度解析与从零手撕实现
linux·c++·线程池