Package org.apache.spark.storage
Class RandomBlockReplicationPolicy
Object
org.apache.spark.storage.RandomBlockReplicationPolicy
- All Implemented Interfaces:
- org.apache.spark.internal.Logging,- BlockReplicationPolicy
public class RandomBlockReplicationPolicy
extends Object
implements BlockReplicationPolicy, org.apache.spark.internal.Logging
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.apache.spark.internal.Loggingorg.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionscala.collection.immutable.List<BlockManagerId>prioritize(BlockManagerId blockManagerId, scala.collection.immutable.Seq<BlockManagerId> peers, scala.collection.mutable.HashSet<BlockManagerId> peersReplicatedTo, BlockId blockId, int numReplicas) Method to prioritize a bunch of candidate peers of a block.Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.spark.internal.LogginginitializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContext
- 
Constructor Details- 
RandomBlockReplicationPolicypublic RandomBlockReplicationPolicy()
 
- 
- 
Method Details- 
prioritizepublic scala.collection.immutable.List<BlockManagerId> prioritize(BlockManagerId blockManagerId, scala.collection.immutable.Seq<BlockManagerId> peers, scala.collection.mutable.HashSet<BlockManagerId> peersReplicatedTo, BlockId blockId, int numReplicas) Method to prioritize a bunch of candidate peers of a block. This is a basic implementation, that just makes sure we put blocks on different hosts, if possible- Specified by:
- prioritizein interface- BlockReplicationPolicy
- Parameters:
- blockManagerId- Id of the current BlockManager for self identification
- peers- A list of peers of a BlockManager
- peersReplicatedTo- Set of peers already replicated to
- blockId- BlockId of the block being replicated. This can be used as a source of randomness if needed.
- numReplicas- Number of peers we need to replicate to
- Returns:
- A prioritized list of peers. Lower the index of a peer, higher its priority
 
 
-