Skip to content

Commit 54c8cae

Browse files
TaskMetrics and Memory Bytes Spilled
1 parent 8fce9d1 commit 54c8cae

File tree

2 files changed

+40
-7
lines changed

2 files changed

+40
-7
lines changed

docs/executor/TaskMetrics.md

+38-7
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,50 @@ tags:
5151

5252
### <span id="_memoryBytesSpilled"><span id="memoryBytesSpilled"><span id="incMemoryBytesSpilled"><span id="MEMORY_BYTES_SPILLED"> Memory Bytes Spilled
5353

54-
`memoryBytesSpilled` metric
54+
Number of in-memory bytes spilled by the tasks (of a stage)
5555

56-
`memoryBytesSpilled` is exposed using Dropwizard metrics system using [ExecutorSource](ExecutorSource.md) as [memoryBytesSpilled](ExecutorSource.md#METRIC_MEMORY_BYTES_SPILLED).
56+
`_memoryBytesSpilled` is a `LongAccumulator` with `internal.metrics.memoryBytesSpilled` name.
57+
58+
`memoryBytesSpilled` metric is exposed using [ExecutorSource](ExecutorSource.md) as [memoryBytesSpilled](ExecutorSource.md#METRIC_MEMORY_BYTES_SPILLED) (using Dropwizard metrics system).
59+
60+
#### memoryBytesSpilled
61+
62+
```scala
63+
memoryBytesSpilled: Long
64+
```
65+
66+
`memoryBytesSpilled` is the sum of all memory bytes spilled across all tasks.
67+
68+
---
69+
70+
`memoryBytesSpilled` is used when:
71+
72+
* `SpillListener` is requested to [onStageCompleted](../SpillListener.md#onStageCompleted)
73+
* `TaskRunner` is requested to [run](TaskRunner.md#run) (and updates task metrics in the Dropwizard metrics system)
74+
* `LiveTask` is requested to `updateMetrics`
75+
* `JsonProtocol` is requested to [taskMetricsToJson](../history-server/JsonProtocol.md#taskMetricsToJson)
76+
77+
#### incMemoryBytesSpilled
78+
79+
```scala
80+
incMemoryBytesSpilled(
81+
v: Long): Unit
82+
```
83+
84+
`incMemoryBytesSpilled` adds the `v` value to the [_memoryBytesSpilled](#_memoryBytesSpilled) metric.
85+
86+
---
5787

5888
`incMemoryBytesSpilled` is used when:
5989

6090
* `Aggregator` is requested to [updateMetrics](../rdd/Aggregator.md#updateMetrics)
61-
* `CoGroupedRDD` is requested to [compute](../rdd/CoGroupedRDD.md#compute)
62-
* `BlockStoreShuffleReader` is requested to [read](../shuffle/BlockStoreShuffleReader.md#read)
91+
* `BasePythonRunner.ReaderIterator` is requested to `handleTimingData`
92+
* `CoGroupedRDD` is requested to [compute a partition](../rdd/CoGroupedRDD.md#compute)
6393
* `ShuffleExternalSorter` is requested to [spill](../shuffle/ShuffleExternalSorter.md#spill)
64-
* `ExternalSorter` is requested to [writePartitionedFile](../shuffle/ExternalSorter.md#writePartitionedFile) and [writePartitionedMapOutput](../shuffle/ExternalSorter.md#writePartitionedMapOutput)
65-
* `UnsafeExternalSorter` is requested to [createWithExistingInMemorySorter](../memory/UnsafeExternalSorter.md#createWithExistingInMemorySorter) and [spill](../memory/UnsafeExternalSorter.md#spill)
66-
* `SpillableIterator` (of [UnsafeExternalSorter](../memory/UnsafeExternalSorter.md)) is requested to `spill`
94+
* `JsonProtocol` is requested to [taskMetricsFromJson](../history-server/JsonProtocol.md#taskMetricsFromJson)
95+
* `ExternalSorter` is requested to [insertAllAndUpdateMetrics](../shuffle/ExternalSorter.md#insertAllAndUpdateMetrics), [writePartitionedFile](../shuffle/ExternalSorter.md#writePartitionedFile), [writePartitionedMapOutput](../shuffle/ExternalSorter.md#writePartitionedMapOutput)
96+
* `UnsafeExternalSorter` is requested to [createWithExistingInMemorySorter](../memory/UnsafeExternalSorter.md#createWithExistingInMemorySorter), [spill](../memory/UnsafeExternalSorter.md#spill)
97+
* `UnsafeExternalSorter.SpillableIterator` is requested to `spill`
6798

6899
## <span id="TaskContext"> TaskContext
69100

docs/webui/StagePage.md

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ render(
2424

2525
`render` is part of the [WebUIPage](WebUIPage.md#render) abstraction.
2626

27+
---
28+
2729
`render` requires `id` and `attempt` request parameters.
2830

2931
`render`...FIXME

0 commit comments

Comments
 (0)