Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
2cc188fd
Commit
2cc188fd
authored
11 years ago
by
Reynold Xin
Browse files
Options
Downloads
Patches
Plain Diff
SPARK-774: cogroup should also disable map side combine by default
parent
6738178d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/spark/rdd/CoGroupedRDD.scala
+7
-3
7 additions, 3 deletions
core/src/main/scala/spark/rdd/CoGroupedRDD.scala
with
7 additions
and
3 deletions
core/src/main/scala/spark/rdd/CoGroupedRDD.scala
+
7
−
3
View file @
2cc188fd
...
...
@@ -6,7 +6,7 @@ import java.util.{HashMap => JHashMap}
import
scala.collection.JavaConversions
import
scala.collection.mutable.ArrayBuffer
import
spark.
{
Aggregator
,
Logging
,
Partition
,
Partitioner
,
RDD
,
SparkEnv
,
TaskContext
}
import
spark.
{
Aggregator
,
Partition
,
Partitioner
,
RDD
,
SparkEnv
,
TaskContext
}
import
spark.
{
Dependency
,
OneToOneDependency
,
ShuffleDependency
}
...
...
@@ -49,12 +49,16 @@ private[spark] class CoGroupAggregator
*
* @param rdds parent RDDs.
* @param part partitioner used to partition the shuffle output.
* @param mapSideCombine flag indicating whether to merge values before shuffle step.
* @param mapSideCombine flag indicating whether to merge values before shuffle step. If the flag
* is on, Spark does an extra pass over the data on the map side to merge
* all values belonging to the same key together. This can reduce the amount
* of data shuffled if and only if the number of distinct keys is very small,
* and the ratio of key size to value size is also very small.
*/
class
CoGroupedRDD
[
K
](
@transient
var
rdds
:
Seq
[
RDD
[(
K
,
_
)]],
part
:
Partitioner
,
val
mapSideCombine
:
Boolean
=
tru
e
,
val
mapSideCombine
:
Boolean
=
fals
e
,
val
serializerClass
:
String
=
null
)
extends
RDD
[(
K
,
Seq
[
Seq
[
_
]])](
rdds
.
head
.
context
,
Nil
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment