ShuffleWriter
Caution
|
FIXME |
ShuffleWriter
Contract
1 2 3 4 5 6 7 8 |
abstract class ShuffleWriter[K, V] { def write(records: Iterator[Product2[K, V]]): Unit def stop(success: Boolean): Option[MapStatus] } |
Note
|
ShuffleWriter is a private[spark] contract.
|
Method | Description |
---|---|
Writes a sequence of records (for a RDD partition) to a shuffle system when a |
|
Closes a Used when a |