BestOreo commented on issue #24720: [SPARK-27852][Spark Core] 
updateBytesWritten() operaton is missed
URL: https://github.com/apache/spark/pull/24720#issuecomment-496335936
 
 
   > recordWritten
   `recordWritten()` is never used in `override def write(kvBytes: Array[Byte], 
offs: Int, len: Int)`
   
   Here is the function body:
   ```
    override def write(kvBytes: Array[Byte], offs: Int, len: Int): Unit = {
        if (!streamOpen) {
          open()
        }
        bs.write(kvBytes, offs, len)
    } 
   ```
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to