From 03e33cd45230b73f65f3ce5acfffa136a86e1450 Mon Sep 17 00:00:00 2001
From: heibaiying <31504331+heibaiying@users.noreply.github.com>
Date: Thu, 6 Jun 2019 14:33:18 +0800
Subject: [PATCH] =?UTF-8?q?Update=20Zookeeper=E7=AE=80=E4=BB=8B=E5=8F=8A?=
=?UTF-8?q?=E6=A0=B8=E5=BF=83=E6=A6=82=E5=BF=B5.md?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
notes/Zookeeper简介及核心概念.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/notes/Zookeeper简介及核心概念.md b/notes/Zookeeper简介及核心概念.md
index b8c69cd..f781ce1 100644
--- a/notes/Zookeeper简介及核心概念.md
+++ b/notes/Zookeeper简介及核心概念.md
@@ -8,7 +8,7 @@
3.2 会话
3.3 数据节点
3.4 节点信息
- 3.5 Wather
+ 3.5 Watcher
3.6 ACL
四、ZAB协议
4.1 ZAB协议与数据一致性
@@ -103,7 +103,7 @@ Zookeeper数据模型是由一系列基本数据单元`Znode`(数据节点)组
| dataLength | 数据内容的长度 |
| numChildren | 数据节点当前的子节点个数 |
-### 3.5 Wather
+### 3.5 Watcher
Zookeeper中一个常用的功能是Watcher(事件监听器),它允许用户在指定节点上针对感兴趣的事件注册监听,当事件发生时,监听器会被触发,并将事件信息推送到客户端。该机制是Zookeeper实现分布式协调服务的重要特性。