Skip to content

Commit

Permalink
[VL] Fix scan time metric (#3780)
Browse files Browse the repository at this point in the history
  • Loading branch information
rui-mo authored Nov 27, 2023
1 parent 06c2f42 commit ebdf882
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class MetricsApiImpl extends MetricsApi with Logging {
"outputBytes" -> SQLMetrics.createSizeMetric(sparkContext, "number of output bytes"),
"wallNanos" -> SQLMetrics.createNanoTimingMetric(sparkContext, "totaltime of batch scan"),
"cpuCount" -> SQLMetrics.createMetric(sparkContext, "cpu wall time count"),
"scanTime" -> SQLMetrics.createTimingMetric(sparkContext, "scan time"),
"scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "scan time"),
"peakMemoryBytes" -> SQLMetrics.createSizeMetric(sparkContext, "peak memory bytes"),
"numMemoryAllocations" -> SQLMetrics.createMetric(
sparkContext,
Expand Down

0 comments on commit ebdf882

Please sign in to comment.