org.apache.spark.graphx.impl

VertexRDDImpl

class VertexRDDImpl[VD] extends VertexRDD[VD]

Linear Supertypes
VertexRDD[VD], RDD[(VertexId, VD)], Logging, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VertexRDDImpl
  2. VertexRDD
  3. RDD
  4. Logging
  5. Serializable
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(other: RDD[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def aggregate[U](zeroValue: U)(seqOp: (U, (VertexId, VD)) ⇒ U, combOp: (U, U) ⇒ U)(implicit arg0: ClassTag[U]): U

    Definition Classes
    RDD
  8. def aggregateUsingIndex[VD2](messages: RDD[(VertexId, VD2)], reduceFunc: (VD2, VD2) ⇒ VD2)(implicit arg0: ClassTag[VD2]): VertexRDD[VD2]

    Aggregates vertices in messages that have the same ids using reduceFunc, returning a VertexRDD co-indexed with this.

    Aggregates vertices in messages that have the same ids using reduceFunc, returning a VertexRDD co-indexed with this.

    messages

    an RDD containing messages to aggregate, where each message is a pair of its target vertex ID and the message data

    reduceFunc

    the associative aggregation function for merging messages to the same vertex

    returns

    a VertexRDD co-indexed with this, containing only vertices that received messages. For those vertices, their values are the result of applying reduceFunc to all received messages.

    Definition Classes
    VertexRDDImplVertexRDD
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def cache(): VertexRDDImpl.this.type

    Persists the vertex partitions at targetStorageLevel, which defaults to MEMORY_ONLY.

    Persists the vertex partitions at targetStorageLevel, which defaults to MEMORY_ONLY.

    Definition Classes
    VertexRDDImpl → RDD
  11. def cartesian[U](other: RDD[U])(implicit arg0: ClassTag[U]): RDD[((VertexId, VD), U)]

    Definition Classes
    RDD
  12. def checkpoint(): Unit

    Definition Classes
    VertexRDDImpl → RDD
  13. def clearDependencies(): Unit

    Attributes
    protected
    Definition Classes
    RDD
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def coalesce(numPartitions: Int, shuffle: Boolean)(implicit ord: Ordering[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  16. def collect[U](f: PartialFunction[(VertexId, VD), U])(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
  17. def collect(): Array[(VertexId, VD)]

    Definition Classes
    RDD
  18. def compute(part: Partition, context: TaskContext): Iterator[(VertexId, VD)]

    Provides the RDD[(VertexId, VD)] equivalent output.

    Provides the RDD[(VertexId, VD)] equivalent output.

    Definition Classes
    VertexRDD → RDD
  19. def context: SparkContext

    Definition Classes
    RDD
  20. def count(): Long

    The number of vertices in the RDD.

    The number of vertices in the RDD.

    Definition Classes
    VertexRDDImpl → RDD
  21. def countApprox(timeout: Long, confidence: Double): PartialResult[BoundedDouble]

    Definition Classes
    RDD
    Annotations
    @Experimental()
  22. def countApproxDistinct(relativeSD: Double): Long

    Definition Classes
    RDD
  23. def countApproxDistinct(p: Int, sp: Int): Long

    Definition Classes
    RDD
    Annotations
    @Experimental()
  24. def countByValue()(implicit ord: Ordering[(VertexId, VD)]): Map[(VertexId, VD), Long]

    Definition Classes
    RDD
  25. def countByValueApprox(timeout: Long, confidence: Double)(implicit ord: Ordering[(VertexId, VD)]): PartialResult[Map[(VertexId, VD), BoundedDouble]]

    Definition Classes
    RDD
    Annotations
    @Experimental()
  26. final def dependencies: Seq[Dependency[_]]

    Definition Classes
    RDD
  27. def diff(other: VertexRDD[VD]): VertexRDD[VD]

    For each vertex present in both this and other, diff returns only those vertices with differing values; for values that are different, keeps the values from other.

    For each vertex present in both this and other, diff returns only those vertices with differing values; for values that are different, keeps the values from other. This is only guaranteed to work if the VertexRDDs share a common ancestor.

    other

    the other VertexRDD with which to diff against.

    Definition Classes
    VertexRDDImplVertexRDD
  28. def diff(other: RDD[(VertexId, VD)]): VertexRDD[VD]

    For each vertex present in both this and other, diff returns only those vertices with differing values; for values that are different, keeps the values from other.

    For each vertex present in both this and other, diff returns only those vertices with differing values; for values that are different, keeps the values from other. This is only guaranteed to work if the VertexRDDs share a common ancestor.

    other

    the other RDD[(VertexId, VD)] with which to diff against.

    Definition Classes
    VertexRDDImplVertexRDD
  29. def distinct(): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  30. def distinct(numPartitions: Int)(implicit ord: Ordering[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  31. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  33. def filter(pred: ((VertexId, VD)) ⇒ Boolean): VertexRDD[VD]

    Restricts the vertex set to the set of vertices satisfying the given predicate.

    Restricts the vertex set to the set of vertices satisfying the given predicate. This operation preserves the index for efficient joins with the original RDD, and it sets bits in the bitmask rather than allocating new memory.

    It is declared and defined here to allow refining the return type from RDD[(VertexId, VD)] to VertexRDD[VD].

    pred

    the user defined predicate, which takes a tuple to conform to the RDD[(VertexId, VD)] interface

    Definition Classes
    VertexRDD → RDD
  34. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. def first(): (VertexId, VD)

    Definition Classes
    RDD
  36. def firstParent[U](implicit arg0: ClassTag[U]): RDD[U]

    Attributes
    protected[org.apache.spark]
    Definition Classes
    RDD
  37. def flatMap[U](f: ((VertexId, VD)) ⇒ TraversableOnce[U])(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
  38. def fold(zeroValue: (VertexId, VD))(op: ((VertexId, VD), (VertexId, VD)) ⇒ (VertexId, VD)): (VertexId, VD)

    Definition Classes
    RDD
  39. def foreach(f: ((VertexId, VD)) ⇒ Unit): Unit

    Definition Classes
    RDD
  40. def foreachPartition(f: (Iterator[(VertexId, VD)]) ⇒ Unit): Unit

    Definition Classes
    RDD
  41. def getCheckpointFile: Option[String]

    Definition Classes
    VertexRDDImpl → RDD
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. def getDependencies: Seq[Dependency[_]]

    Attributes
    protected
    Definition Classes
    RDD
  44. def getPartitions: Array[Partition]

    Attributes
    protected
    Definition Classes
    VertexRDD → RDD
  45. def getPreferredLocations(s: Partition): Seq[String]

    Attributes
    protected
    Definition Classes
    VertexRDDImpl → RDD
  46. def getStorageLevel: StorageLevel

    Definition Classes
    VertexRDDImpl → RDD
  47. def glom(): RDD[Array[(VertexId, VD)]]

    Definition Classes
    RDD
  48. def groupBy[K](f: ((VertexId, VD)) ⇒ K, p: Partitioner)(implicit kt: ClassTag[K], ord: Ordering[K]): RDD[(K, Iterable[(VertexId, VD)])]

    Definition Classes
    RDD
  49. def groupBy[K](f: ((VertexId, VD)) ⇒ K, numPartitions: Int)(implicit kt: ClassTag[K]): RDD[(K, Iterable[(VertexId, VD)])]

    Definition Classes
    RDD
  50. def groupBy[K](f: ((VertexId, VD)) ⇒ K)(implicit kt: ClassTag[K]): RDD[(K, Iterable[(VertexId, VD)])]

    Definition Classes
    RDD
  51. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  52. val id: Int

    Definition Classes
    RDD
  53. def innerJoin[U, VD2](other: RDD[(VertexId, U)])(f: (VertexId, VD, U) ⇒ VD2)(implicit arg0: ClassTag[U], arg1: ClassTag[VD2]): VertexRDD[VD2]

    Inner joins this VertexRDD with an RDD containing vertex attribute pairs.

    Inner joins this VertexRDD with an RDD containing vertex attribute pairs. If the other RDD is backed by a VertexRDD with the same index then the efficient innerZipJoin implementation is used.

    other

    an RDD containing vertices to join. If there are multiple entries for the same vertex, one is picked arbitrarily. Use aggregateUsingIndex to merge multiple entries.

    f

    the join function applied to corresponding values of this and other

    returns

    a VertexRDD co-indexed with this, containing only vertices that appear in both this and other, with values supplied by f

    Definition Classes
    VertexRDDImplVertexRDD
  54. def innerZipJoin[U, VD2](other: VertexRDD[U])(f: (VertexId, VD, U) ⇒ VD2)(implicit arg0: ClassTag[U], arg1: ClassTag[VD2]): VertexRDD[VD2]

    Efficiently inner joins this VertexRDD with another VertexRDD sharing the same index.

    Efficiently inner joins this VertexRDD with another VertexRDD sharing the same index. See innerJoin for the behavior of the join.

    Definition Classes
    VertexRDDImplVertexRDD
  55. def intersection(other: RDD[(VertexId, VD)], numPartitions: Int): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  56. def intersection(other: RDD[(VertexId, VD)], partitioner: Partitioner)(implicit ord: Ordering[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  57. def intersection(other: RDD[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  58. def isCheckpointed: Boolean

    Definition Classes
    VertexRDDImpl → RDD
  59. def isEmpty(): Boolean

    Definition Classes
    RDD
  60. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  61. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  62. final def iterator(split: Partition, context: TaskContext): Iterator[(VertexId, VD)]

    Definition Classes
    RDD
  63. def keyBy[K](f: ((VertexId, VD)) ⇒ K): RDD[(K, (VertexId, VD))]

    Definition Classes
    RDD
  64. def leftJoin[VD2, VD3](other: RDD[(VertexId, VD2)])(f: (VertexId, VD, Option[VD2]) ⇒ VD3)(implicit arg0: ClassTag[VD2], arg1: ClassTag[VD3]): VertexRDD[VD3]

    Left joins this VertexRDD with an RDD containing vertex attribute pairs.

    Left joins this VertexRDD with an RDD containing vertex attribute pairs. If the other RDD is backed by a VertexRDD with the same index then the efficient leftZipJoin implementation is used. The resulting VertexRDD contains an entry for each vertex in this. If other is missing any vertex in this VertexRDD, f is passed None. If there are duplicates, the vertex is picked arbitrarily.

    VD2

    the attribute type of the other VertexRDD

    VD3

    the attribute type of the resulting VertexRDD

    other

    the other VertexRDD with which to join

    f

    the function mapping a vertex id and its attributes in this and the other vertex set to a new vertex attribute.

    returns

    a VertexRDD containing all the vertices in this VertexRDD with the attributes emitted by f.

    Definition Classes
    VertexRDDImplVertexRDD
  65. def leftZipJoin[VD2, VD3](other: VertexRDD[VD2])(f: (VertexId, VD, Option[VD2]) ⇒ VD3)(implicit arg0: ClassTag[VD2], arg1: ClassTag[VD3]): VertexRDD[VD3]

    Left joins this RDD with another VertexRDD with the same index.

    Left joins this RDD with another VertexRDD with the same index. This function will fail if both VertexRDDs do not share the same index. The resulting vertex set contains an entry for each vertex in this. If other is missing any vertex in this VertexRDD, f is passed None.

    VD2

    the attribute type of the other VertexRDD

    VD3

    the attribute type of the resulting VertexRDD

    other

    the other VertexRDD with which to join.

    f

    the function mapping a vertex id and its attributes in this and the other vertex set to a new vertex attribute.

    returns

    a VertexRDD containing the results of f

    Definition Classes
    VertexRDDImplVertexRDD
  66. def localCheckpoint(): VertexRDDImpl.this.type

    Definition Classes
    RDD
  67. def log: Logger

    Attributes
    protected
    Definition Classes
    Logging
  68. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  69. def logDebug(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  70. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  71. def logError(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  72. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  73. def logInfo(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  74. def logName: String

    Attributes
    protected
    Definition Classes
    Logging
  75. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  76. def logTrace(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  77. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  78. def logWarning(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  79. def map[U](f: ((VertexId, VD)) ⇒ U)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
  80. def mapPartitions[U](f: (Iterator[(VertexId, VD)]) ⇒ Iterator[U], preservesPartitioning: Boolean)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
  81. def mapPartitionsWithIndex[U](f: (Int, Iterator[(VertexId, VD)]) ⇒ Iterator[U], preservesPartitioning: Boolean)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
  82. def mapValues[VD2](f: (VertexId, VD) ⇒ VD2)(implicit arg0: ClassTag[VD2]): VertexRDD[VD2]

    Maps each vertex attribute, additionally supplying the vertex ID.

    Maps each vertex attribute, additionally supplying the vertex ID.

    VD2

    the type returned by the map function

    f

    the function applied to each ID-value pair in the RDD

    returns

    a new VertexRDD with values obtained by applying f to each of the entries in the original VertexRDD. The resulting VertexRDD retains the same index.

    Definition Classes
    VertexRDDImplVertexRDD
  83. def mapValues[VD2](f: (VD) ⇒ VD2)(implicit arg0: ClassTag[VD2]): VertexRDD[VD2]

    Maps each vertex attribute, preserving the index.

    Maps each vertex attribute, preserving the index.

    VD2

    the type returned by the map function

    f

    the function applied to each value in the RDD

    returns

    a new VertexRDD with values obtained by applying f to each of the entries in the original VertexRDD

    Definition Classes
    VertexRDDImplVertexRDD
  84. def max()(implicit ord: Ordering[(VertexId, VD)]): (VertexId, VD)

    Definition Classes
    RDD
  85. def min()(implicit ord: Ordering[(VertexId, VD)]): (VertexId, VD)

    Definition Classes
    RDD
  86. def minus(other: VertexRDD[VD]): VertexRDD[VD]

    For each VertexId present in both this and other, minus will act as a set difference operation returning only those unique VertexId's present in this.

    For each VertexId present in both this and other, minus will act as a set difference operation returning only those unique VertexId's present in this.

    other

    a VertexRDD to run the set operation against

    Definition Classes
    VertexRDDImplVertexRDD
  87. def minus(other: RDD[(VertexId, VD)]): VertexRDD[VD]

    For each VertexId present in both this and other, minus will act as a set difference operation returning only those unique VertexId's present in this.

    For each VertexId present in both this and other, minus will act as a set difference operation returning only those unique VertexId's present in this.

    other

    an RDD to run the set operation against

    Definition Classes
    VertexRDDImplVertexRDD
  88. var name: String

    Definition Classes
    RDD
  89. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  90. final def notify(): Unit

    Definition Classes
    AnyRef
  91. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  92. def parent[U](j: Int)(implicit arg0: ClassTag[U]): RDD[U]

    Attributes
    protected[org.apache.spark]
    Definition Classes
    RDD
  93. val partitioner: Option[Partitioner]

    Definition Classes
    VertexRDDImpl → RDD
  94. final def partitions: Array[Partition]

    Definition Classes
    RDD
  95. val partitionsRDD: RDD[ShippableVertexPartition[VD]]

    Definition Classes
    VertexRDDImplVertexRDD
  96. def persist(newLevel: StorageLevel): VertexRDDImpl.this.type

    Persists the vertex partitions at the specified storage level, ignoring any existing target storage level.

    Persists the vertex partitions at the specified storage level, ignoring any existing target storage level.

    Definition Classes
    VertexRDDImpl → RDD
  97. def persist(): VertexRDDImpl.this.type

    Definition Classes
    RDD
  98. def pipe(command: Seq[String], env: Map[String, String], printPipeContext: ((String) ⇒ Unit) ⇒ Unit, printRDDElement: ((VertexId, VD), (String) ⇒ Unit) ⇒ Unit, separateWorkingDir: Boolean): RDD[String]

    Definition Classes
    RDD
  99. def pipe(command: String, env: Map[String, String]): RDD[String]

    Definition Classes
    RDD
  100. def pipe(command: String): RDD[String]

    Definition Classes
    RDD
  101. final def preferredLocations(split: Partition): Seq[String]

    Definition Classes
    RDD
  102. def randomSplit(weights: Array[Double], seed: Long): Array[RDD[(VertexId, VD)]]

    Definition Classes
    RDD
  103. def reduce(f: ((VertexId, VD), (VertexId, VD)) ⇒ (VertexId, VD)): (VertexId, VD)

    Definition Classes
    RDD
  104. def reindex(): VertexRDD[VD]

    Construct a new VertexRDD that is indexed by only the visible vertices.

    Construct a new VertexRDD that is indexed by only the visible vertices. The resulting VertexRDD will be based on a different index and can no longer be quickly joined with this RDD.

    Definition Classes
    VertexRDDImplVertexRDD
  105. def repartition(numPartitions: Int)(implicit ord: Ordering[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  106. def reverseRoutingTables(): VertexRDD[VD]

    Returns a new VertexRDD reflecting a reversal of all edge directions in the corresponding EdgeRDD.

    Returns a new VertexRDD reflecting a reversal of all edge directions in the corresponding EdgeRDD.

    Definition Classes
    VertexRDDImplVertexRDD
  107. def sample(withReplacement: Boolean, fraction: Double, seed: Long): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  108. def saveAsObjectFile(path: String): Unit

    Definition Classes
    RDD
  109. def saveAsTextFile(path: String, codec: Class[_ <: CompressionCodec]): Unit

    Definition Classes
    RDD
  110. def saveAsTextFile(path: String): Unit

    Definition Classes
    RDD
  111. def setName(_name: String): VertexRDDImpl.this.type

    Definition Classes
    VertexRDDImpl → RDD
  112. def sortBy[K](f: ((VertexId, VD)) ⇒ K, ascending: Boolean, numPartitions: Int)(implicit ord: Ordering[K], ctag: ClassTag[K]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  113. def sparkContext: SparkContext

    Definition Classes
    RDD
  114. def subtract(other: RDD[(VertexId, VD)], p: Partitioner)(implicit ord: Ordering[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  115. def subtract(other: RDD[(VertexId, VD)], numPartitions: Int): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  116. def subtract(other: RDD[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  117. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  118. def take(num: Int): Array[(VertexId, VD)]

    Definition Classes
    RDD
  119. def takeOrdered(num: Int)(implicit ord: Ordering[(VertexId, VD)]): Array[(VertexId, VD)]

    Definition Classes
    RDD
  120. def takeSample(withReplacement: Boolean, num: Int, seed: Long): Array[(VertexId, VD)]

    Definition Classes
    RDD
  121. val targetStorageLevel: StorageLevel

  122. def toDebugString: String

    Definition Classes
    RDD
  123. def toJavaRDD(): JavaRDD[(VertexId, VD)]

    Definition Classes
    RDD
  124. def toLocalIterator: Iterator[(VertexId, VD)]

    Definition Classes
    RDD
  125. def toString(): String

    Definition Classes
    RDD → AnyRef → Any
  126. def top(num: Int)(implicit ord: Ordering[(VertexId, VD)]): Array[(VertexId, VD)]

    Definition Classes
    RDD
  127. def treeAggregate[U](zeroValue: U)(seqOp: (U, (VertexId, VD)) ⇒ U, combOp: (U, U) ⇒ U, depth: Int)(implicit arg0: ClassTag[U]): U

    Definition Classes
    RDD
  128. def treeReduce(f: ((VertexId, VD), (VertexId, VD)) ⇒ (VertexId, VD), depth: Int): (VertexId, VD)

    Definition Classes
    RDD
  129. def union(other: RDD[(VertexId, VD)]): RDD[(VertexId, VD)]

    Definition Classes
    RDD
  130. def unpersist(blocking: Boolean = true): VertexRDDImpl.this.type

    Definition Classes
    VertexRDDImpl → RDD
  131. implicit val vdTag: ClassTag[VD]

    Attributes
    protected
    Definition Classes
    VertexRDDImplVertexRDD
  132. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  133. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  134. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  135. def withEdges(edges: EdgeRDD[_]): VertexRDD[VD]

    Prepares this VertexRDD for efficient joins with the given EdgeRDD.

    Prepares this VertexRDD for efficient joins with the given EdgeRDD.

    Definition Classes
    VertexRDDImplVertexRDD
  136. def zip[U](other: RDD[U])(implicit arg0: ClassTag[U]): RDD[((VertexId, VD), U)]

    Definition Classes
    RDD
  137. def zipPartitions[B, C, D, V](rdd2: RDD[B], rdd3: RDD[C], rdd4: RDD[D])(f: (Iterator[(VertexId, VD)], Iterator[B], Iterator[C], Iterator[D]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[C], arg2: ClassTag[D], arg3: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  138. def zipPartitions[B, C, D, V](rdd2: RDD[B], rdd3: RDD[C], rdd4: RDD[D], preservesPartitioning: Boolean)(f: (Iterator[(VertexId, VD)], Iterator[B], Iterator[C], Iterator[D]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[C], arg2: ClassTag[D], arg3: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  139. def zipPartitions[B, C, V](rdd2: RDD[B], rdd3: RDD[C])(f: (Iterator[(VertexId, VD)], Iterator[B], Iterator[C]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[C], arg2: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  140. def zipPartitions[B, C, V](rdd2: RDD[B], rdd3: RDD[C], preservesPartitioning: Boolean)(f: (Iterator[(VertexId, VD)], Iterator[B], Iterator[C]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[C], arg2: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  141. def zipPartitions[B, V](rdd2: RDD[B])(f: (Iterator[(VertexId, VD)], Iterator[B]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  142. def zipPartitions[B, V](rdd2: RDD[B], preservesPartitioning: Boolean)(f: (Iterator[(VertexId, VD)], Iterator[B]) ⇒ Iterator[V])(implicit arg0: ClassTag[B], arg1: ClassTag[V]): RDD[V]

    Definition Classes
    RDD
  143. def zipWithIndex(): RDD[((VertexId, VD), Long)]

    Definition Classes
    RDD
  144. def zipWithUniqueId(): RDD[((VertexId, VD), Long)]

    Definition Classes
    RDD

Deprecated Value Members

  1. def filterWith[A](constructA: (Int) ⇒ A)(p: ((VertexId, VD), A) ⇒ Boolean): RDD[(VertexId, VD)]

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use mapPartitionsWithIndex and filter

  2. def flatMapWith[A, U](constructA: (Int) ⇒ A, preservesPartitioning: Boolean)(f: ((VertexId, VD), A) ⇒ Seq[U])(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use mapPartitionsWithIndex and flatMap

  3. def foreachWith[A](constructA: (Int) ⇒ A)(f: ((VertexId, VD), A) ⇒ Unit): Unit

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use mapPartitionsWithIndex and foreach

  4. def mapPartitionsWithContext[U](f: (TaskContext, Iterator[(VertexId, VD)]) ⇒ Iterator[U], preservesPartitioning: Boolean)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
    Annotations
    @DeveloperApi() @deprecated
    Deprecated

    (Since version 1.2.0) use TaskContext.get

  5. def mapPartitionsWithSplit[U](f: (Int, Iterator[(VertexId, VD)]) ⇒ Iterator[U], preservesPartitioning: Boolean)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) use mapPartitionsWithIndex

  6. def mapWith[A, U](constructA: (Int) ⇒ A, preservesPartitioning: Boolean)(f: ((VertexId, VD), A) ⇒ U)(implicit arg0: ClassTag[U]): RDD[U]

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use mapPartitionsWithIndex

  7. def toArray(): Array[(VertexId, VD)]

    Definition Classes
    RDD
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use collect

Inherited from VertexRDD[VD]

Inherited from RDD[(VertexId, VD)]

Inherited from Logging

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped