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
c40e7663
Commit
c40e7663
authored
13 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Use java.util.HashMap in shuffles
parent
d6ec664b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/src/main/scala/spark/ShuffleMapTask.scala
+12
-6
12 additions, 6 deletions
core/src/main/scala/spark/ShuffleMapTask.scala
core/src/main/scala/spark/ShuffledRDD.scala
+17
-6
17 additions, 6 deletions
core/src/main/scala/spark/ShuffledRDD.scala
with
29 additions
and
12 deletions
core/src/main/scala/spark/ShuffleMapTask.scala
+
12
−
6
View file @
c40e7663
...
...
@@ -3,7 +3,7 @@ package spark
import
java.io.BufferedOutputStream
import
java.io.FileOutputStream
import
java.io.ObjectOutputStream
import
scala.collection.mutable.
HashMap
import
java.util.
{
HashMap
=>
J
HashMap
}
class
ShuffleMapTask
(
stageId
:
Int
,
rdd
:
RDD
[
_
],
dep
:
ShuffleDependency
[
_
,
_
,
_
],
val
partition
:
Int
,
locs
:
Seq
[
String
])
...
...
@@ -14,21 +14,27 @@ extends DAGTask[String](stageId) with Logging {
val
numOutputSplits
=
dep
.
partitioner
.
numPartitions
val
aggregator
=
dep
.
aggregator
.
asInstanceOf
[
Aggregator
[
Any
,
Any
,
Any
]]
val
partitioner
=
dep
.
partitioner
.
asInstanceOf
[
Partitioner
]
val
buckets
=
Array
.
tabulate
(
numOutputSplits
)(
_
=>
new
HashMap
[
Any
,
Any
])
val
buckets
=
Array
.
tabulate
(
numOutputSplits
)(
_
=>
new
J
HashMap
[
Any
,
Any
])
for
(
elem
<-
rdd
.
iterator
(
split
))
{
val
(
k
,
v
)
=
elem
.
asInstanceOf
[(
Any
,
Any
)]
var
bucketId
=
partitioner
.
getPartition
(
k
)
val
bucket
=
buckets
(
bucketId
)
bucket
(
k
)
=
bucket
.
get
(
k
)
match
{
case
Some
(
c
)
=>
aggregator
.
mergeValue
(
c
,
v
)
case
None
=>
aggregator
.
createCombiner
(
v
)
var
existing
=
bucket
.
get
(
k
)
if
(
existing
==
null
)
{
bucket
.
put
(
k
,
aggregator
.
createCombiner
(
v
))
}
else
{
bucket
.
put
(
k
,
aggregator
.
mergeValue
(
existing
,
v
))
}
}
val
ser
=
SparkEnv
.
get
.
serializer
.
newInstance
()
for
(
i
<-
0
until
numOutputSplits
)
{
val
file
=
LocalFileShuffle
.
getOutputFile
(
dep
.
shuffleId
,
partition
,
i
)
val
out
=
ser
.
outputStream
(
new
BufferedOutputStream
(
new
FileOutputStream
(
file
)))
buckets
(
i
).
foreach
(
pair
=>
out
.
writeObject
(
pair
))
val
iter
=
buckets
(
i
).
entrySet
().
iterator
()
while
(
iter
.
hasNext
())
{
val
entry
=
iter
.
next
()
out
.
writeObject
((
entry
.
getKey
,
entry
.
getValue
))
}
// TODO: have some kind of EOF marker
out
.
close
()
}
...
...
This diff is collapsed.
Click to expand it.
core/src/main/scala/spark/ShuffledRDD.scala
+
17
−
6
View file @
c40e7663
package
spark
import
scala.collection.mutable.
HashMap
import
java.util.
{
HashMap
=>
J
HashMap
}
class
ShuffledRDDSplit
(
val
idx
:
Int
)
extends
Split
{
...
...
@@ -27,15 +27,26 @@ extends RDD[(K, C)](parent.context) {
override
val
dependencies
=
List
(
dep
)
override
def
compute
(
split
:
Split
)
:
Iterator
[(
K
,
C
)]
=
{
val
combiners
=
new
HashMap
[
K
,
C
]
val
combiners
=
new
J
HashMap
[
K
,
C
]
def
mergePair
(
k
:
K
,
c
:
C
)
{
combiners
(
k
)
=
combiners
.
get
(
k
)
match
{
case
Some
(
oldC
)
=>
aggregator
.
mergeCombiners
(
oldC
,
c
)
case
None
=>
c
val
oldC
=
combiners
.
get
(
k
)
if
(
oldC
==
null
)
{
combiners
.
put
(
k
,
c
)
}
else
{
combiners
.
put
(
k
,
aggregator
.
mergeCombiners
(
oldC
,
c
))
}
}
val
fetcher
=
SparkEnv
.
get
.
shuffleFetcher
fetcher
.
fetch
[
K
,
C
](
dep
.
shuffleId
,
split
.
index
,
mergePair
)
combiners
.
iterator
return
new
Iterator
[(
K
,
C
)]
{
var
iter
=
combiners
.
entrySet
().
iterator
()
def
hasNext
()
:
Boolean
=
iter
.
hasNext
()
def
next
()
:
(
K
,
C
)
=
{
val
entry
=
iter
.
next
()
(
entry
.
getKey
,
entry
.
getValue
)
}
}
}
}
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