planga82 opened a new issue, #303: URL: https://github.com/apache/datafusion-comet/issues/303
### What is the problem the feature request solves? Add all statistics SortMergeJoinExec datafusion node provides. ### Describe the potential solution Override metrics map in CometSortMergeJoin to provide all available metrics ### Additional context **Current metrics:** ``` output_rows Elapsed_compute ``` **All available metrics** ``` /// Total time for joining probe-side batches to the build-side batches join_time: metrics::Time, /// Number of batches consumed by this operator input_batches: metrics::Count, /// Number of rows consumed by this operator input_rows: metrics::Count, /// Number of batches produced by this operator output_batches: metrics::Count, /// Number of rows produced by this operator output_rows: metrics::Count, /// Peak memory used for buffered data. /// Calculated as sum of peak memory values across partitions peak_mem_used: metrics::Gauge ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org