From 9532648b54eec34970a9602d970bef0600bd18bb Mon Sep 17 00:00:00 2001
From: heibaiying <31504331+heibaiying@users.noreply.github.com>
Date: Sun, 14 Apr 2019 15:31:24 +0800
Subject: [PATCH] =?UTF-8?q?Update=20Storm=E6=A0=B8=E5=BF=83=E6=A6=82?=
=?UTF-8?q?=E5=BF=B5=E8=AF=A6=E8=A7=A3.md?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
notes/Storm核心概念详解.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/notes/Storm核心概念详解.md b/notes/Storm核心概念详解.md
index 772d8af..a4221b5 100644
--- a/notes/Storm核心概念详解.md
+++ b/notes/Storm核心概念详解.md
@@ -10,7 +10,7 @@
二、Storm架构详解
2.1 nimbus进程
2.2 supervisor进程
- 2.3 Zookeeper的作用
+ 2.3 zookeeper的作用
2.4 worker进程
2.5 executor线程
2.6 并行度
@@ -206,7 +206,7 @@ Storm 中一共有8个内置的 Stream Grouping。也可以通过实现 `CustomS
-### 2.3 Zookeeper的作用
+### 2.3 zookeeper的作用
Nimbus和Supervisor进程都被设计为**快速失败**(遇到任何意外情况时进程自毁)和**无状态**(所有状态保存在Zookeeper或磁盘上)。 因此,如果Nimbus或Supervisor守护进程死亡,它们会重新启动,并从zookeeper上获取之前的状态数据,就像什么都没发生一样。