object VertexRDD extends Serializable
- Alphabetic
- By Inheritance
- VertexRDD
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[VD](vertices: RDD[(VertexId, VD)], edges: EdgeRDD[_], defaultVal: VD, mergeFunc: (VD, VD) => VD)(implicit arg0: ClassTag[VD]): VertexRDD[VD]
Constructs a
VertexRDD
from an RDD of vertex-attribute pairs.Constructs a
VertexRDD
from an RDD of vertex-attribute pairs. Duplicate vertex entries are merged usingmergeFunc
. The resultingVertexRDD
will be joinable withedges
, and any missing vertices referred to byedges
will be created with the attributedefaultVal
.- VD
the vertex attribute type
- vertices
the collection of vertex-attribute pairs
- edges
the EdgeRDD that these vertices may be joined with
- defaultVal
the vertex attribute to use when creating missing vertices
- mergeFunc
the commutative, associative duplicate vertex attribute merge function
- def apply[VD](vertices: RDD[(VertexId, VD)], edges: EdgeRDD[_], defaultVal: VD)(implicit arg0: ClassTag[VD]): VertexRDD[VD]
Constructs a
VertexRDD
from an RDD of vertex-attribute pairs.Constructs a
VertexRDD
from an RDD of vertex-attribute pairs. Duplicate vertex entries are removed arbitrarily. The resultingVertexRDD
will be joinable withedges
, and any missing vertices referred to byedges
will be created with the attributedefaultVal
.- VD
the vertex attribute type
- vertices
the collection of vertex-attribute pairs
- edges
the EdgeRDD that these vertices may be joined with
- defaultVal
the vertex attribute to use when creating missing vertices
- def apply[VD](vertices: RDD[(VertexId, VD)])(implicit arg0: ClassTag[VD]): VertexRDD[VD]
Constructs a standalone
VertexRDD
(one that is not set up for efficient joins with an EdgeRDD) from an RDD of vertex-attribute pairs.Constructs a standalone
VertexRDD
(one that is not set up for efficient joins with an EdgeRDD) from an RDD of vertex-attribute pairs. Duplicate entries are removed arbitrarily.- VD
the vertex attribute type
- vertices
the collection of vertex-attribute pairs
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromEdges[VD](edges: EdgeRDD[_], numPartitions: Int, defaultVal: VD)(implicit arg0: ClassTag[VD]): VertexRDD[VD]
Constructs a
VertexRDD
containing all vertices referred to inedges
.Constructs a
VertexRDD
containing all vertices referred to inedges
. The vertices will be created with the attributedefaultVal
. The resultingVertexRDD
will be joinable withedges
.- VD
the vertex attribute type
- edges
the EdgeRDD referring to the vertices to create
- numPartitions
the desired number of partitions for the resulting
VertexRDD
- defaultVal
the vertex attribute to use when creating missing vertices
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)