BlockEvictionHandler
is a contract of FIXME that dropFromMemory.
package org.apache.spark.storage.memory
trait BlockEvictionHandler {
def dropFromMemory[T: ClassTag](
blockId: BlockId,
data: () => Either[Array[T], ChunkedByteBuffer]): StorageLevel
}
Note
|
BlockEvictionHandler is a private[storage] contract.
|
Method | Description |
---|---|
|
Used exclusively when |
Note
|
BlockManager is the one and only known implementation of BlockEvictionHandler Contract in Apache Spark. |