TaskMetrics constructor

TaskMetrics({
  1. String? diskBytesSpilled,
  2. String? executorCpuTimeNanos,
  3. String? executorDeserializeCpuTimeNanos,
  4. String? executorDeserializeTimeMillis,
  5. String? executorRunTimeMillis,
  6. InputMetrics? inputMetrics,
  7. String? jvmGcTimeMillis,
  8. String? memoryBytesSpilled,
  9. OutputMetrics? outputMetrics,
  10. String? peakExecutionMemoryBytes,
  11. String? resultSerializationTimeMillis,
  12. String? resultSize,
  13. ShuffleReadMetrics? shuffleReadMetrics,
  14. ShuffleWriteMetrics? shuffleWriteMetrics,
})

Implementation

TaskMetrics({
  this.diskBytesSpilled,
  this.executorCpuTimeNanos,
  this.executorDeserializeCpuTimeNanos,
  this.executorDeserializeTimeMillis,
  this.executorRunTimeMillis,
  this.inputMetrics,
  this.jvmGcTimeMillis,
  this.memoryBytesSpilled,
  this.outputMetrics,
  this.peakExecutionMemoryBytes,
  this.resultSerializationTimeMillis,
  this.resultSize,
  this.shuffleReadMetrics,
  this.shuffleWriteMetrics,
});