Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
function rename in ShuffleWriteProcessor
  • Loading branch information
xuanyuanking committed Dec 11, 2018
commit 3b3dfd95a538563077d0cc536ef252f4af2c2dcf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private[spark] class ShuffleMapTask(
threadMXBean.getCurrentThreadCpuTime - deserializeStartCpuTime
} else 0L

dep.shuffleWriterProcessor.writeProcess(rdd, dep, partitionId, context, partition)
dep.shuffleWriterProcessor.write(rdd, dep, partitionId, context, partition)
}

override def preferredLocations: Seq[TaskLocation] = preferredLocs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private[spark] class ShuffleWriteProcessor extends Serializable with Logging {
* get from [[ShuffleManager]] and triggers rdd compute, finally return the [[MapStatus]] for
* this task.
*/
def writeProcess(
def write(
rdd: RDD[_],
dep: ShuffleDependency[_, _, _],
partitionId: Int,
Expand Down