修改名称

修改名称
This commit is contained in:
刘帅 2020-05-07 22:38:32 +08:00 committed by GitHub
parent 380d398ddd
commit 325c2de07d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ Apache Spark 具有以下特点:
**执行过程**
1. 用户程序创建 SparkContext 后,它会连接到集群资源管理器,集群资源管理器会为用户程序分配计算资源,并启动 Executor
2. Dirver 将计算程序划分为不同的执行阶段和多个 Task之后将 Task 发送给 Executor
2. Driver 将计算程序划分为不同的执行阶段和多个 Task之后将 Task 发送给 Executor
3. Executor 负责执行 Task并将执行状态汇报给 Driver同时也会将当前节点资源的使用情况汇报给集群资源管理器。
## 四、核心组件