Movatterモバイル変換


[0]ホーム

URL:


spark.rdd

NewHadoopRDD

classNewHadoopRDD[K,V] extendsRDD[(K, V)]

Linear Supertypes
RDD[(K, V)],Serializable,Serializable, AnyRef,Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. NewHadoopRDD
  2. RDD
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. newNewHadoopRDD(sc:SparkContext,inputFormatClass: Class[_ <: org.apache.hadoop.mapreduce.InputFormat[K,V]],keyClass: Class[K],valueClass: Class[V],conf:Configuration)

Value Members

  1. finaldef!=(arg0: AnyRef):Boolean

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

    Definition Classes
    Any
  3. finaldef##():Int

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

    Return the union of this RDD and another one.

    Return the union of this RDD and another one. Any identical elements will appear multipletimes (use.distinct() to eliminate them).

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

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

    Definition Classes
    Any
  7. defaggregate[U](zeroValue: U)(seqOp: (U, (K, V)) ⇒ U,combOp: (U, U) ⇒ U)(implicitarg0: ClassManifest[U]): U

    Aggregate the elements of each partition, and then the results for all the partitions, usinggiven combine functions and a neutral "zero value".

    Aggregate the elements of each partition, and then the results for all the partitions, usinggiven combine functions and a neutral "zero value". This function can return a different resulttype, U, than the type of this RDD, T. Thus, we need one operation for merging a T into an Uand one operation for merging two U's, as in scala.TraversableOnce. Both of these functions areallowed to modify and return their first argument instead of creating a new U to avoid memoryallocation.

    Definition Classes
    RDD
  8. finaldefasInstanceOf[T0]: T0

    Definition Classes
    Any
  9. defcache():RDD[(K, V)]

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Definition Classes
    RDD
  10. defcartesian[U](other:RDD[U])(implicitarg0: ClassManifest[U]):RDD[((K, V), U)]

    Return the Cartesian product of this RDD and another one, that is, the RDD of all pairs ofelements (a, b) where a is inthis and b is inother.

    Return the Cartesian product of this RDD and another one, that is, the RDD of all pairs ofelements (a, b) where a is inthis and b is inother.

    Definition Classes
    RDD
  11. defclone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. defcollect():Array[(K, V)]

    Return an array that contains all of the elements in this RDD.

    Return an array that contains all of the elements in this RDD.

    Definition Classes
    RDD
  13. defcompute(theSplit:Split): Iterator[(K, V)]

    Function for computing a given partition.

    Function for computing a given partition.

    Definition Classes
    NewHadoopRDDRDD
  14. valconfBroadcast:Broadcast[SerializableWritable[Configuration]]

  15. defcontext:SparkContext

    TheSparkContext that this RDD was created on.

    TheSparkContext that this RDD was created on.

    Definition Classes
    RDD
  16. defcount():Long

    Return the number of elements in the RDD.

    Return the number of elements in the RDD.

    Definition Classes
    RDD
  17. defcountApprox(timeout:Long,confidence:Double =0.95):PartialResult[BoundedDouble]

    (Experimental) Approximate version of count() that returns a potentially incomplete resultwithin a timeout, even if not all tasks have finished.

    (Experimental) Approximate version of count() that returns a potentially incomplete resultwithin a timeout, even if not all tasks have finished.

    Definition Classes
    RDD
  18. defcountByValue():Map[(K, V),Long]

    Return the count of each unique value in this RDD as a map of (value, count) pairs.

    Return the count of each unique value in this RDD as a map of (value, count) pairs. The finalcombine step happens locally on the master, equivalent to running a single reduce task.

    Definition Classes
    RDD
  19. defcountByValueApprox(timeout:Long,confidence:Double =0.95):PartialResult[Map[(K, V),BoundedDouble]]

    (Experimental) Approximate version of countByValue().

    (Experimental) Approximate version of countByValue().

    Definition Classes
    RDD
  20. valdependencies: List[spark.Dependency[_]]

    How this RDD depends on any parent RDDs.

    How this RDD depends on any parent RDDs.

    Definition Classes
    NewHadoopRDDRDD
  21. defdistinct(numSplits:Int =splits.size):RDD[(K, V)]

    Return a new RDD containing the distinct elements in this RDD.

    Return a new RDD containing the distinct elements in this RDD.

    Definition Classes
    RDD
  22. finaldefeq(arg0: AnyRef):Boolean

    Definition Classes
    AnyRef
  23. defequals(arg0:Any):Boolean

    Definition Classes
    AnyRef → Any
  24. deffilter(f: ((K, V)) ⇒Boolean):RDD[(K, V)]

    Return a new RDD containing only the elements that satisfy a predicate.

    Return a new RDD containing only the elements that satisfy a predicate.

    Definition Classes
    RDD
  25. deffinalize():Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  26. deffirst(): (K, V)

    Return the first element in this RDD.

    Return the first element in this RDD.

    Definition Classes
    RDD
  27. defflatMap[U](f: ((K, V)) ⇒ TraversableOnce[U])(implicitarg0: ClassManifest[U]):RDD[U]

    Return a new RDD by first applying a function to all elements of this RDD, and then flattening the results.

    Return a new RDD by first applying a function to all elements of this RDD, and then flattening the results.

    Definition Classes
    RDD
  28. deffold(zeroValue: (K, V))(op: ((K, V), (K, V)) ⇒ (K, V)): (K, V)

    Aggregate the elements of each partition, and then the results for all the partitions, using agiven associative function and a neutral "zero value".

    Aggregate the elements of each partition, and then the results for all the partitions, using agiven associative function and a neutral "zero value". The function op(t1, t2) is allowed tomodify t1 and return it as its result value to avoid object allocation; however, it should notmodify t2.

    Definition Classes
    RDD
  29. defforeach(f: ((K, V)) ⇒Unit):Unit

    Applies a function f to all elements of this RDD.

    Applies a function f to all elements of this RDD.

    Definition Classes
    RDD
  30. finaldefgetClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  31. defgetStorageLevel:StorageLevel

    Get the RDD's current storage level, or StorageLevel.

    Get the RDD's current storage level, or StorageLevel.NONE if none is set.

    Definition Classes
    RDD
  32. defglom():RDD[Array[(K, V)]]

    Return an RDD created by coalescing all elements within each partition into an array.

    Return an RDD created by coalescing all elements within each partition into an array.

    Definition Classes
    RDD
  33. defgroupBy[K](f: ((K, V)) ⇒ K)(implicitarg0: ClassManifest[K]):RDD[(K, Seq[(K, V)])]

    Return an RDD of grouped items.

    Return an RDD of grouped items.

    Definition Classes
    RDD
  34. defgroupBy[K](f: ((K, V)) ⇒ K,numSplits:Int)(implicitarg0: ClassManifest[K]):RDD[(K, Seq[(K, V)])]

    Return an RDD of grouped elements.

    Return an RDD of grouped elements. Each group consists of a key and a sequence of elementsmapping to that key.

    Definition Classes
    RDD
  35. defhashCode():Int

    Definition Classes
    AnyRef → Any
  36. valid:Int

    A unique ID for this RDD (within its SparkContext).

    A unique ID for this RDD (within its SparkContext).

    Definition Classes
    RDD
  37. finaldefisInstanceOf[T0]:Boolean

    Definition Classes
    Any
  38. finaldefiterator(split:Split): Iterator[(K, V)]

    Internal method to this RDD; will read from cache if applicable, or otherwise compute it.

    Internal method to this RDD; will read from cache if applicable, or otherwise compute it.This shouldnot be called by users directly, but is available for implementors of customsubclasses of RDD.

    Definition Classes
    RDD
  39. defmap[U](f: ((K, V)) ⇒ U)(implicitarg0: ClassManifest[U]):RDD[U]

    Return a new RDD by applying a function to all elements of this RDD.

    Return a new RDD by applying a function to all elements of this RDD.

    Definition Classes
    RDD
  40. defmapPartitions[U](f: (Iterator[(K, V)]) ⇒ Iterator[U])(implicitarg0: ClassManifest[U]):RDD[U]

    Return a new RDD by applying a function to each partition of this RDD.

    Return a new RDD by applying a function to each partition of this RDD.

    Definition Classes
    RDD
  41. defmapPartitionsWithSplit[U](f: (Int, Iterator[(K, V)]) ⇒ Iterator[U])(implicitarg0: ClassManifest[U]):RDD[U]

    Return a new RDD by applying a function to each partition of this RDD, while tracking the indexof the original partition.

    Return a new RDD by applying a function to each partition of this RDD, while tracking the indexof the original partition.

    Definition Classes
    RDD
  42. finaldefne(arg0: AnyRef):Boolean

    Definition Classes
    AnyRef
  43. finaldefnotify():Unit

    Definition Classes
    AnyRef
  44. finaldefnotifyAll():Unit

    Definition Classes
    AnyRef
  45. valpartitioner:Option[Partitioner]

    Optionally overridden by subclasses to specify how they are partitioned.

    Optionally overridden by subclasses to specify how they are partitioned.

    Definition Classes
    RDD
  46. defpersist():RDD[(K, V)]

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Definition Classes
    RDD
  47. defpersist(newLevel:StorageLevel):RDD[(K, V)]

    Set this RDD's storage level to persist its values across operations after the first timeit is computed.

    Set this RDD's storage level to persist its values across operations after the first timeit is computed. Can only be called once on each RDD.

    Definition Classes
    RDD
  48. defpipe(command: Seq[String],env:Map[String, String]):RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  49. defpipe(command: Seq[String]):RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  50. defpipe(command: String):RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  51. defpreferredLocations(split:Split):WrappedArray[String]

    Optionally overridden by subclasses to specify placement preferences.

    Optionally overridden by subclasses to specify placement preferences.

    Definition Classes
    NewHadoopRDDRDD
  52. defreduce(f: ((K, V), (K, V)) ⇒ (K, V)): (K, V)

    Reduces the elements of this RDD using the specified associative binary operator.

    Reduces the elements of this RDD using the specified associative binary operator.

    Definition Classes
    RDD
  53. defsample(withReplacement:Boolean,fraction:Double,seed:Int):RDD[(K, V)]

    Return a sampled subset of this RDD.

    Return a sampled subset of this RDD.

    Definition Classes
    RDD
  54. defsaveAsObjectFile(path: String):Unit

    Save this RDD as a SequenceFile of serialized objects.

    Save this RDD as a SequenceFile of serialized objects.

    Definition Classes
    RDD
  55. defsaveAsTextFile(path: String):Unit

    Save this RDD as a text file, using string representations of elements.

    Save this RDD as a text file, using string representations of elements.

    Definition Classes
    RDD
  56. defsplits:Array[Split]

    Set of partitions in this RDD.

    Set of partitions in this RDD.

    Definition Classes
    NewHadoopRDDRDD
  57. finaldefsynchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  58. deftake(num:Int):Array[(K, V)]

    Take the first num elements of the RDD.

    Take the first num elements of the RDD. This currently scans the partitions *one by one*, soit will be slow if a lot of partitions are required. In that case, use collect() to get thewhole RDD instead.

    Definition Classes
    RDD
  59. deftakeSample(withReplacement:Boolean,num:Int,seed:Int):Array[(K, V)]

    Definition Classes
    RDD
  60. deftoArray():Array[(K, V)]

    Return an array that contains all of the elements in this RDD.

    Return an array that contains all of the elements in this RDD.

    Definition Classes
    RDD
  61. deftoString():String

    Definition Classes
    AnyRef → Any
  62. defunion(other:RDD[(K, V)]):RDD[(K, V)]

    Return the union of this RDD and another one.

    Return the union of this RDD and another one. Any identical elements will appear multipletimes (use.distinct() to eliminate them).

    Definition Classes
    RDD
  63. finaldefwait():Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  64. finaldefwait(arg0:Long,arg1:Int):Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  65. finaldefwait(arg0:Long):Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited fromRDD[(K, V)]

Inherited fromSerializable

Inherited fromSerializable

Inherited from AnyRef

Inherited fromAny


[8]ページ先頭

©2009-2025 Movatter.jp