Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23128#discussion_r236108610
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/metric/SQLMetrics.scala 
---
    @@ -82,6 +82,14 @@ object SQLMetrics {
     
       private val baseForAvgMetric: Int = 10
     
    +  val REMOTE_BLOCKS_FETCHED = "remoteBlocksFetched"
    +  val LOCAL_BLOCKS_FETCHED = "localBlocksFetched"
    +  val REMOTE_BYTES_READ = "remoteBytesRead"
    +  val REMOTE_BYTES_READ_TO_DISK = "remoteBytesReadToDisk"
    +  val LOCAL_BYTES_READ = "localBytesRead"
    +  val FETCH_WAIT_TIME = "fetchWaitTime"
    +  val RECORDS_READ = "recordsRead"
    --- End diff --
    
    Is there an easy way to sync this list with `ShuffleReadMetrics` instead of 
doing it manually?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to