Sink — Contract of Metrics Sinks
Sink
is a contract of metrics sinks.
1 2 3 4 5 6 7 8 9 10 11 |
package org.apache.spark.metrics.sink trait Sink { def start(): Unit def stop(): Unit def report(): Unit } |
Note
|
Sink is a private[spark] contract.
|
Method | Description |
---|---|
|
Used when…FIXME |
|
Used when…FIXME |
|
Used when…FIXME |
Sink | Description |
---|---|
|
|
|
|
|
|
|
|
|
|
|
Note
|
All known Sinks in Spark 2.3 are in org.apache.spark.metrics.sink Scala package.
|