-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Narrow dependencies-第二章第二节图FullDependency: N : N #43
Comments
+1 |
2 similar comments
+1 |
+1 |
Narrow指的是完全依赖,parentRDD中每个p中的数据不需要再进行partition后发给childRDD。下面的cartesian(otherRDD)展示了N:N的Narrow Dependency,整个计算过程不需要shuffle。 |
@JerryLead |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Narrow dependencies: each partition of the parent RDD is used by at most one partition of the child RDD
第二章第二节中 FullDependency: N : N 那张图, 父RDD中的一个分区被子RDD的两个分区依赖, 不能被称为Narrow Dependency吧, 为啥说FullDenpency是NarrowDepency呢?
The text was updated successfully, but these errors were encountered: