Skip to content

Commit

Permalink
[GLUTEN-6695][CH] Introduce shuffleWallTime in CHMetricsApi to calcul…
Browse files Browse the repository at this point in the history
…ate the overall shuffle write time (#6696)
  • Loading branch information
SteNicholas authored Aug 4, 2024
1 parent 6f00a45 commit 944c926
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ class CHMetricsApi extends MetricsApi with Logging with LogLevelUtil {
"spillTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time to spill"),
"compressTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time to compress"),
"prepareTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time to prepare"),
"shuffleWallTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "shuffle wall time"),
"avgReadBatchNumRows" -> SQLMetrics
.createAverageMetric(sparkContext, "avg read batch num rows"),
"numInputRows" -> SQLMetrics.createMetric(sparkContext, "number of input rows"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ class CHCelebornColumnarShuffleWriter[K, V](
} else {
initShuffleWriter(cb)
val col = cb.column(0).asInstanceOf[CHColumnVector]
val startTime = System.nanoTime()
jniWrapper.split(nativeShuffleWriter, col.getBlockAddress)
dep.metrics("shuffleWallTime").add(System.nanoTime() - startTime)
dep.metrics("numInputRows").add(cb.numRows)
dep.metrics("inputBatches").add(1)
// This metric is important, AQE use it to decide if EliminateLimit
Expand All @@ -77,8 +79,10 @@ class CHCelebornColumnarShuffleWriter[K, V](
return
}

val startTime = System.nanoTime()
splitResult = jniWrapper.stop(nativeShuffleWriter)

dep.metrics("shuffleWallTime").add(System.nanoTime() - startTime)
dep.metrics("splitTime").add(splitResult.getSplitTime)
dep.metrics("IOTime").add(splitResult.getDiskWriteTime)
dep.metrics("serializeTime").add(splitResult.getSerializationTime)
Expand Down

0 comments on commit 944c926

Please sign in to comment.