Github user jisookim0513 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16714#discussion_r113776549
  
    --- Diff: core/src/main/scala/org/apache/spark/util/JsonProtocol.scala ---
    @@ -343,10 +376,14 @@ private[spark] object JsonProtocol {
           ("Bytes Written" -> taskMetrics.outputMetrics.bytesWritten) ~
             ("Records Written" -> taskMetrics.outputMetrics.recordsWritten)
         val updatedBlocks =
    -      JArray(taskMetrics.updatedBlockStatuses.toList.map { case (id, 
status) =>
    -        ("Block ID" -> id.toString) ~
    -          ("Status" -> blockStatusToJson(status))
    -      })
    +      if (omitUpdatedBlockStatuses) {
    --- End diff --
    
    @vanzin @ajbozarth #17412 gets rid of updated block statuses from the 
accumulable but not from task metrics. If you think it's ok to not to have an 
option to get rid of updated block statuses, then I can just get rid of updated 
block statuses here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to