Skip to content
Snippets Groups Projects
Commit 57c2d088 authored by Neelesh Srinivas Salian's avatar Neelesh Srinivas Salian Committed by Sean Owen
Browse files

[SPARK-9923] [CORE] ShuffleMapStage.numAvailableOutputs should be an Int instead of Long

Modified type of ShuffleMapStage.numAvailableOutputs from Long to Int

Author: Neelesh Srinivas Salian <nsalian@cloudera.com>

Closes #8183 from nssalian/SPARK-9923.
parent 34d610be
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ private[spark] class ShuffleMapStage(
override def toString: String = "ShuffleMapStage " + id
var numAvailableOutputs: Long = 0
var numAvailableOutputs: Int = 0
def isAvailable: Boolean = numAvailableOutputs == numPartitions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment