【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.

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

相关推荐
夏日听雨眠15 小时前
Linux(printf函数输出问题,exit ,主函数参数,fork函数,文件系统调用)
linux·运维·服务器
阿火~16 小时前
linux部署nacos【无脑简单版】【支持ARM版本和X86版本】
linux·运维·服务器
故事还在继续吗16 小时前
Linux 系统调用与接口层
linux·运维·系统调用
暴力求解16 小时前
Linux---网络基础概念
linux·运维·服务器·网络·操作系统
AquaMriusC16 小时前
Windows11专业版使用虚拟化技术安装Linux(CentOS7)
linux·运维·服务器
枳实-叶16 小时前
【Linux驱动开发】第6天:互斥锁mutex/自旋锁spinlock+驱动全流程+应用测试程序
linux·驱动开发
pengyi87101516 小时前
共享IP全面优缺点解析,适合什么人群使用?
linux·运维·服务器·网络·tcp/ip
Little At Air17 小时前
LinuxOS阻塞队列模型(单生产者单消费者)
linux·数据结构·c++
南境十里·墨染春水17 小时前
linux学习进展 git详解
linux·git·学习
念恒1230617 小时前
基础IO(一切皆文件)
linux·c语言·c++·算法