Skip to content

Commit

Permalink
[query] Fix TaskReport message (#10691)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoterba authored Jul 22, 2021
1 parent 79bcff4 commit 68ed374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hail/src/main/scala/is/hail/backend/HailTaskContext.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class HailTaskContext {

def finish(): Unit = {
log.info(s"TaskReport: stage=${ stageId() }, partition=${ partitionId() }, attempt=${ attemptNumber() }, " +
s"peakBytes=${ thePool.getHighestTotalUsage }, peakBytesReadable=${ formatSpace(thePool.getHighestTotalUsage) }"+
s"peakBytes=${ thePool.getHighestTotalUsage }, peakBytesReadable=${ formatSpace(thePool.getHighestTotalUsage) }, "+
s"chunks requested=${thePool.getUsage._1}, cache hits=${thePool.getUsage._2}")
thePool.close()
}
Expand Down

0 comments on commit 68ed374

Please sign in to comment.