From 325c2de07dde22613ea9ad03ff65364649eff8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=B8=85?= <18392154300@163.com> Date: Thu, 7 May 2020 22:38:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改名称 --- notes/Spark简介.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Spark简介.md b/notes/Spark简介.md index b81a381..5ea4e75 100644 --- a/notes/Spark简介.md +++ b/notes/Spark简介.md @@ -46,7 +46,7 @@ Apache Spark 具有以下特点: **执行过程**: 1. 用户程序创建 SparkContext 后,它会连接到集群资源管理器,集群资源管理器会为用户程序分配计算资源,并启动 Executor; -2. Dirver 将计算程序划分为不同的执行阶段和多个 Task,之后将 Task 发送给 Executor; +2. Driver 将计算程序划分为不同的执行阶段和多个 Task,之后将 Task 发送给 Executor; 3. Executor 负责执行 Task,并将执行状态汇报给 Driver,同时也会将当前节点资源的使用情况汇报给集群资源管理器。 ## 四、核心组件