From fb84f03e1ad02eaddb3a037de1f69a712ec80fbe Mon Sep 17 00:00:00 2001 From: zouxxyy Date: Sun, 12 Oct 2025 17:29:56 +0800 Subject: [PATCH 1/2] 1 --- .../org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala index 12c66a6a1a16..03869a0039ba 100644 --- a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala +++ b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala @@ -95,7 +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 batch scan and filter"), "cpuCount" -> SQLMetrics.createMetric(sparkContext, "cpu wall time count"), "scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "scan time"), "peakMemoryBytes" -> SQLMetrics.createSizeMetric(sparkContext, "peak memory bytes"), From c2af37f0569b2129a0669e1f6cca2c919ba92cab Mon Sep 17 00:00:00 2001 From: zouxxyy Date: Mon, 13 Oct 2025 15:47:17 +0800 Subject: [PATCH 2/2] 1 --- .../apache/gluten/backendsapi/velox/VeloxMetricsApi.scala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala index 03869a0039ba..57ccd3446e34 100644 --- a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala +++ b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala @@ -95,11 +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 and filter"), + "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,