BlockEvictionHandler
BlockEvictionHandler
is a contract of FIXME that dropFromMemory.
1 2 3 4 5 6 7 8 9 10 11 |
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. |