Skip to content

Commit

Permalink
Merge pull request JerryLead#7 from ericsahit/patch-1
Browse files Browse the repository at this point in the history
fix typo 'driver'
  • Loading branch information
JerryLead committed Sep 10, 2014
2 parents 4382fc2 + ebecae4 commit d1c5d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/5-Architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ finalRDD.action()
```
代码的文字描述:

当用户的 program 调用 `val sc = new SparkContext(sparkConf)` 时,这个语句会帮助 program 启动诸多有关 driver 通信、job 执行的对象、线程、actor等,**该语句确立了 program 的 dirver 地位。**
当用户的 program 调用 `val sc = new SparkContext(sparkConf)` 时,这个语句会帮助 program 启动诸多有关 driver 通信、job 执行的对象、线程、actor等,**该语句确立了 program 的 driver 地位。**

### 生成 Job 逻辑执行图
Driver program 中的 transformation() 建立 computing chain(一系列的 RDD),每个 RDD 的 compute() 定义数据来了怎么计算得到该 RDD 中 partition 的结果,getDependencies() 定义 RDD 之间 partition 的数据依赖。
Expand Down

0 comments on commit d1c5d3b

Please sign in to comment.