org.apache.spark.graphx
Class PartitionStrategy.CanonicalRandomVertexCut$
Object
org.apache.spark.graphx.PartitionStrategy.CanonicalRandomVertexCut$
- All Implemented Interfaces:
- java.io.Serializable, PartitionStrategy, scala.Equals, scala.Product
- Enclosing interface:
- PartitionStrategy
public static class PartitionStrategy.CanonicalRandomVertexCut$
- extends Object
- implements PartitionStrategy, scala.Product, scala.Serializable
Assigns edges to partitions by hashing the source and destination vertex IDs in a canonical
direction, resulting in a random vertex cut that colocates all edges between two vertices,
regardless of direction.
- See Also:
- Serialized Form
Method Summary |
int |
getPartition(long src,
long dst,
int numParts)
Returns the partition number for a given edge. |
Methods inherited from class Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface scala.Product |
productArity, productElement, productIterator, productPrefix |
Methods inherited from interface scala.Equals |
canEqual, equals |
MODULE$
public static final PartitionStrategy.CanonicalRandomVertexCut$ MODULE$
- Static reference to the singleton instance of this Scala object.
PartitionStrategy.CanonicalRandomVertexCut$
public PartitionStrategy.CanonicalRandomVertexCut$()
getPartition
public int getPartition(long src,
long dst,
int numParts)
- Description copied from interface:
PartitionStrategy
- Returns the partition number for a given edge.
- Specified by:
getPartition
in interface PartitionStrategy