Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ class VeloxMetricsApi extends MetricsApi with Logging {
"numOutputRows" -> SQLMetrics.createMetric(sparkContext, "number of output rows"),
"outputVectors" -> SQLMetrics.createMetric(sparkContext, "number of output vectors"),
"outputBytes" -> SQLMetrics.createSizeMetric(sparkContext, "number of output bytes"),
"wallNanos" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of batch scan"),
"wallNanos" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of scan and filter"),
"cpuCount" -> SQLMetrics.createMetric(sparkContext, "cpu wall time count"),
"scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "scan time"),
"scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of scan"),
"peakMemoryBytes" -> SQLMetrics.createSizeMetric(sparkContext, "peak memory bytes"),
"numMemoryAllocations" -> SQLMetrics.createMetric(
sparkContext,
Expand Down