You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Number of in-memory bytes spilled by the tasks (of a stage)
55
55
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
+
---
57
87
58
88
`incMemoryBytesSpilled` is used when:
59
89
60
90
*`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)
63
93
*`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`
0 commit comments