Class

zio.spark

SparkContext

Related Doc: package spark

Permalink

final case class SparkContext(underlying: org.apache.spark.SparkContext) extends Product with Serializable

Self Type
SparkContext
Annotations
@SuppressWarnings()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SparkContext
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SparkContext(underlying: org.apache.spark.SparkContext)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def action[U](f: (org.apache.spark.SparkContext) ⇒ U)(implicit trace: Trace): Task[U]

    Permalink

    Applies an action to the underlying SparkContext.

  5. def addFile(path: ⇒ String, recursive: ⇒ Boolean)(implicit trace: Trace): Task[Unit]

    Permalink

    Add a file to be downloaded with this Spark job on every node.

    Add a file to be downloaded with this Spark job on every node.

    If a file is added during execution, it will not be available until the next TaskSet starts.

    path

    can be either a local file, a file in HDFS (or other Hadoop-supported filesystems), or an HTTP, HTTPS or FTP URI. To access the file in Spark jobs, use SparkFiles.get(fileName) to find its download location.

    recursive

    if true, a directory can be given in path. Currently directories are only supported for Hadoop-supported filesystems.

    Note

    A path can be added only once. Subsequent additions of the same path are ignored.

  6. def addFile(path: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Add a file to be downloaded with this Spark job on every node.

    Add a file to be downloaded with this Spark job on every node.

    If a file is added during execution, it will not be available until the next TaskSet starts.

    path

    can be either a local file, a file in HDFS (or other Hadoop-supported filesystems), or an HTTP, HTTPS or FTP URI. To access the file in Spark jobs, use SparkFiles.get(fileName) to find its download location.

    Note

    A path can be added only once. Subsequent additions of the same path are ignored.

  7. def addJar(path: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Adds a JAR dependency for all tasks to be executed on this SparkContext in the future.

    Adds a JAR dependency for all tasks to be executed on this SparkContext in the future.

    If a jar is added during execution, it will not be available until the next TaskSet starts.

    path

    can be either a local file, a file in HDFS (or other Hadoop-supported filesystems), an HTTP, HTTPS or FTP URI, or local:/path for a file on every worker node.

    Note

    A path can be added only once. Subsequent additions of the same path are ignored.

  8. def appName: String

    Permalink
  9. def applicationAttemptId: Option[String]

    Permalink
  10. def applicationId: String

    Permalink

    A unique identifier for the Spark application.

    A unique identifier for the Spark application. Its format depends on the scheduler implementation. (i.e. in case of local spark app something like 'local-1433865536131' in case of YARN something like 'application_1433865536131_34483' in case of MESOS something like 'driver-20170926223339-0001' )

  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def binaryFiles(path: ⇒ String, minPartitions: ⇒ Int = defaultMinPartitions)(implicit trace: Trace): Task[RDD[(String, PortableDataStream)]]

    Permalink

    Get an RDD for a Hadoop-readable dataset as PortableDataStream for each file (useful for binary data)

    Get an RDD for a Hadoop-readable dataset as PortableDataStream for each file (useful for binary data)

    For example, if you have the following files:

    hdfs://a-hdfs-path/part-00000
    hdfs://a-hdfs-path/part-00001
    ...
    hdfs://a-hdfs-path/part-nnnnn

    Do val rdd = sparkContext.binaryFiles("hdfs://a-hdfs-path"),

    then rdd contains

    (a-hdfs-path/part-00000, its content)
    (a-hdfs-path/part-00001, its content)
    ...
    (a-hdfs-path/part-nnnnn, its content)
    path

    Directory to the input data files, the path can be comma separated paths as the list of inputs.

    minPartitions

    A suggestion value of the minimal splitting number for input data.

    returns

    RDD representing tuples of file path and corresponding file content

    Note

    Partitioning is determined by data locality. This may result in too few partitions by default.

    ,

    On some filesystems, .../path/* can be a more efficient way to read all files in a directory rather than .../path/ or .../path

    ,

    Small files are preferred; very large files may cause bad performance.

  13. def binaryRecords(path: ⇒ String, recordLength: ⇒ Int, conf: ⇒ Configuration = hadoopConfiguration)(implicit trace: Trace): Task[RDD[Seq[Byte]]]

    Permalink

    Load data from a flat binary file, assuming the length of each record is constant.

    Load data from a flat binary file, assuming the length of each record is constant.

    path

    Directory to the input data files, the path can be comma separated paths as the list of inputs.

    recordLength

    The length at which to split the records

    conf

    Configuration for setting up the dataset.

    returns

    An RDD of data with values, represented as byte arrays

    Note

    We ensure that the byte array for each record in the resulting RDD has the provided record length.

  14. def broadcast[T](value: ⇒ T)(implicit arg0: ClassTag[T], trace: Trace): Task[Broadcast[T]]

    Permalink

    Broadcast a read-only variable to the cluster, returning a org.apache.spark.broadcast.Broadcast object for reading it in distributed functions.

    Broadcast a read-only variable to the cluster, returning a org.apache.spark.broadcast.Broadcast object for reading it in distributed functions. The variable will be sent to each cluster only once.

    value

    value to broadcast to the Spark nodes

    returns

    Broadcast object, a read-only variable cached on each machine

  15. def cancelAllJobs(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel all jobs that have been scheduled or are running.

  16. def cancelJob(jobId: ⇒ Int)(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel a given job if it's scheduled or running.

    Cancel a given job if it's scheduled or running.

    jobId

    the job ID to cancel

    Note

    Throws InterruptedException if the cancel message cannot be sent

  17. def cancelJob(jobId: ⇒ Int, reason: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel a given job if it's scheduled or running.

    Cancel a given job if it's scheduled or running.

    jobId

    the job ID to cancel

    reason

    optional reason for cancellation

    Note

    Throws InterruptedException if the cancel message cannot be sent

  18. def cancelJobGroup(groupId: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel active jobs for the specified group.

    Cancel active jobs for the specified group. See org.apache.spark.SparkContext.setJobGroup for more information.

  19. def cancelStage(stageId: ⇒ Int)(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel a given stage and all jobs associated with it.

    Cancel a given stage and all jobs associated with it.

    stageId

    the stage ID to cancel

    Note

    Throws InterruptedException if the cancel message cannot be sent

  20. def cancelStage(stageId: ⇒ Int, reason: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Cancel a given stage and all jobs associated with it.

    Cancel a given stage and all jobs associated with it.

    stageId

    the stage ID to cancel

    reason

    reason for cancellation

    Note

    Throws InterruptedException if the cancel message cannot be sent

  21. def clearCallSite(implicit trace: Trace): Task[Unit]

    Permalink

    Clear the thread-local property for overriding the call sites of actions and RDDs.

  22. def clearJobGroup(implicit trace: Trace): Task[Unit]

    Permalink

    Clear the current thread's job group ID and its description.

  23. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def collectionAccumulator[T](name: ⇒ String)(implicit trace: Trace): Task[CollectionAccumulator[T]]

    Permalink

    Create and register a CollectionAccumulator, which starts with empty list and accumulates inputs by adding them into the list.

  25. def collectionAccumulator[T](implicit trace: Trace): Task[CollectionAccumulator[T]]

    Permalink

    Create and register a CollectionAccumulator, which starts with empty list and accumulates inputs by adding them into the list.

  26. def defaultMinPartitions: Int

    Permalink

    Default min number of partitions for Hadoop RDDs when not given by user Notice that we use math.min so the "defaultMinPartitions" cannot be higher than 2.

    Default min number of partitions for Hadoop RDDs when not given by user Notice that we use math.min so the "defaultMinPartitions" cannot be higher than 2. The reasons for this are discussed in https://github.com/mesos/spark/pull/718

  27. def defaultParallelism: Int

    Permalink

    Default level of parallelism to use when not given by user (e.g.

    Default level of parallelism to use when not given by user (e.g. parallelize and makeRDD).

  28. def deployMode: String

    Permalink
  29. def doubleAccumulator(name: ⇒ String)(implicit trace: Trace): Task[DoubleAccumulator]

    Permalink

    Create and register a double accumulator, which starts with 0 and accumulates inputs by add.

  30. def doubleAccumulator(implicit trace: Trace): Task[DoubleAccumulator]

    Permalink

    Create and register a double accumulator, which starts with 0 and accumulates inputs by add.

  31. def emptyRDD[T](implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Get an RDD that has no partitions or elements.

  32. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  33. def files: Seq[String]

    Permalink
  34. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. def get[U](f: (org.apache.spark.SparkContext) ⇒ U): U

    Permalink

    Applies an action to the underlying SparkContext.

  36. def getCheckpointDir(implicit trace: Trace): Task[Option[String]]

    Permalink
  37. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  38. def getConf: SparkConf

    Permalink

    Return a copy of this SparkContext's configuration.

    Return a copy of this SparkContext's configuration. The configuration cannot be changed at runtime.

  39. def getExecutorMemoryStatus(implicit trace: Trace): Task[Map[String, (Long, Long)]]

    Permalink

    Return a map from the slave to the max memory available for caching and the remaining memory available for caching.

  40. def getLocalProperty(key: ⇒ String)(implicit trace: Trace): Task[String]

    Permalink

    Get a local property set in this thread, or null if it is missing.

    Get a local property set in this thread, or null if it is missing. See org.apache.spark.SparkContext.setLocalProperty.

  41. def getPersistentRDDs: Task[Map[Int, RDD[_]]]

    Permalink

    Returns an immutable map of RDDs that have marked themselves as persistent via cache() call.

    Returns an immutable map of RDDs that have marked themselves as persistent via cache() call.

    Note

    This does not necessarily mean the caching or computation was successful.

  42. def getSchedulingMode(implicit trace: Trace): Task[SchedulingMode]

    Permalink

    Return current scheduling mode

  43. def hadoopConfiguration: Configuration

    Permalink

    A default Hadoop Configuration for the Hadoop code (e.g.

    A default Hadoop Configuration for the Hadoop code (e.g. file systems) that we reuse.

    Note

    As it will be reused in all Hadoop RDDs, it's better not to modify it unless you plan to set some global configurations for all Hadoop RDDs.

  44. def hadoopFile[K, V, F <: InputFormat[K, V]](path: String)(implicit km: ClassTag[K], vm: ClassTag[V], fm: ClassTag[F]): RDD[(K, V)]

    Permalink

    Smarter version of hadoopFile() that uses class tags to figure out the classes of keys, values and the InputFormat so that users don't need to pass them directly.

    Smarter version of hadoopFile() that uses class tags to figure out the classes of keys, values and the InputFormat so that users don't need to pass them directly. Instead, callers can just write, for example,

    val file = sparkContext.hadoopFile[LongWritable, Text, TextInputFormat](path)
    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  45. def hadoopFile[K, V, F <: InputFormat[K, V]](path: String, minPartitions: Int)(implicit km: ClassTag[K], vm: ClassTag[V], fm: ClassTag[F]): RDD[(K, V)]

    Permalink

    Smarter version of hadoopFile() that uses class tags to figure out the classes of keys, values and the InputFormat so that users don't need to pass them directly.

    Smarter version of hadoopFile() that uses class tags to figure out the classes of keys, values and the InputFormat so that users don't need to pass them directly. Instead, callers can just write, for example,

    val file = sparkContext.hadoopFile[LongWritable, Text, TextInputFormat](path, minPartitions)
    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    minPartitions

    suggested minimum number of partitions for the resulting RDD

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  46. def hadoopFile[K, V](path: String, inputFormatClass: Class[_ <: InputFormat[K, V]], keyClass: Class[K], valueClass: Class[V], minPartitions: Int = defaultMinPartitions): RDD[(K, V)]

    Permalink

    Get an RDD for a Hadoop file with an arbitrary InputFormat

    Get an RDD for a Hadoop file with an arbitrary InputFormat

    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    inputFormatClass

    storage format of the data to be read

    keyClass

    Class of the key associated with the inputFormatClass parameter

    valueClass

    Class of the value associated with the inputFormatClass parameter

    minPartitions

    suggested minimum number of partitions for the resulting RDD

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  47. def hadoopRDD[K, V](conf: ⇒ JobConf, inputFormatClass: ⇒ Class[_ <: InputFormat[K, V]], keyClass: ⇒ Class[K], valueClass: ⇒ Class[V], minPartitions: ⇒ Int = defaultMinPartitions)(implicit trace: Trace): Task[RDD[(K, V)]]

    Permalink

    Get an RDD for a Hadoop-readable dataset from a Hadoop JobConf given its InputFormat and other necessary info (e.g.

    Get an RDD for a Hadoop-readable dataset from a Hadoop JobConf given its InputFormat and other necessary info (e.g. file name for a filesystem-based dataset, table name for HyperTable), using the older MapReduce API (org.apache.hadoop.mapred).

    conf

    JobConf for setting up the dataset. Note: This will be put into a Broadcast. Therefore if you plan to reuse this conf to create multiple RDDs, you need to make sure you won't modify the conf. A safe approach is always creating a new conf for a new RDD.

    inputFormatClass

    storage format of the data to be read

    keyClass

    Class of the key associated with the inputFormatClass parameter

    valueClass

    Class of the value associated with the inputFormatClass parameter

    minPartitions

    Minimum number of Hadoop Splits to generate.

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  48. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  49. def isLocal: Boolean

    Permalink
  50. def isStopped(implicit trace: Trace): Task[Boolean]

    Permalink

    returns

    true if context is stopped or in the midst of stopping.

  51. def jars: Seq[String]

    Permalink
  52. def killTaskAttempt(taskId: ⇒ Long, interruptThread: ⇒ Boolean = true, reason: ⇒ String = ...)(implicit trace: Trace): Task[Boolean]

    Permalink

    Kill and reschedule the given task attempt.

    Kill and reschedule the given task attempt. Task ids can be obtained from the Spark UI or through SparkListener.onTaskStart.

    taskId

    the task ID to kill. This id uniquely identifies the task attempt.

    interruptThread

    whether to interrupt the thread running the task.

    reason

    the reason for killing the task, which should be a short string. If a task is killed multiple times with different reasons, only one reason will be reported.

    returns

    Whether the task was successfully killed.

  53. def listFiles(implicit trace: Trace): Task[Seq[String]]

    Permalink

    Returns a list of file paths that are added to resources.

  54. def listJars(implicit trace: Trace): Task[Seq[String]]

    Permalink

    Returns a list of jar files that are added to resources.

  55. def longAccumulator(name: ⇒ String)(implicit trace: Trace): Task[LongAccumulator]

    Permalink

    Create and register a long accumulator, which starts with 0 and accumulates inputs by add.

  56. def longAccumulator(implicit trace: Trace): Task[LongAccumulator]

    Permalink

    Create and register a long accumulator, which starts with 0 and accumulates inputs by add.

  57. def makeRDD[T](seq: Seq[(T, Seq[String])])(implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Distribute a local Scala collection to form an RDD, with one or more location preferences (hostnames of Spark nodes) for each object.

    Distribute a local Scala collection to form an RDD, with one or more location preferences (hostnames of Spark nodes) for each object. Create a new partition for each collection item.

    seq

    list of tuples of data and location preferences (hostnames of Spark nodes)

    returns

    RDD representing data partitioned according to location preferences

  58. def makeRDD[T](seq: Seq[T], numSlices: Int = defaultParallelism)(implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Distribute a local Scala collection to form an RDD.

    Distribute a local Scala collection to form an RDD.

    This method is identical to parallelize.

    seq

    Scala collection to distribute

    numSlices

    number of partitions to divide the collection into

    returns

    RDD representing distributed collection

  59. def master: String

    Permalink
  60. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  61. def newAPIHadoopFile[K, V, F <: InputFormat[K, V]](path: ⇒ String, fClass: ⇒ Class[F], kClass: ⇒ Class[K], vClass: ⇒ Class[V], conf: ⇒ Configuration = hadoopConfiguration)(implicit trace: Trace): Task[RDD[(K, V)]]

    Permalink

    Get an RDD for a given Hadoop file with an arbitrary new API InputFormat and extra configuration options to pass to the input format.

    Get an RDD for a given Hadoop file with an arbitrary new API InputFormat and extra configuration options to pass to the input format.

    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    fClass

    storage format of the data to be read

    kClass

    Class of the key associated with the fClass parameter

    vClass

    Class of the value associated with the fClass parameter

    conf

    Hadoop configuration

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  62. def newAPIHadoopFile[K, V, F <: InputFormat[K, V]](path: ⇒ String)(implicit km: ClassTag[K], vm: ClassTag[V], fm: ClassTag[F], trace: Trace): Task[RDD[(K, V)]]

    Permalink

    Smarter version of newApiHadoopFile that uses class tags to figure out the classes of keys, values and the org.apache.hadoop.mapreduce.InputFormat (new MapReduce API) so that user don't need to pass them directly.

    Smarter version of newApiHadoopFile that uses class tags to figure out the classes of keys, values and the org.apache.hadoop.mapreduce.InputFormat (new MapReduce API) so that user don't need to pass them directly. Instead, callers can just write, for example: val file = sparkContext.hadoopFile[LongWritable, Text, TextInputFormat](path)

    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    returns

    RDD of tuples of key and corresponding value

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  63. def newAPIHadoopRDD[K, V, F <: InputFormat[K, V]](conf: Configuration = hadoopConfiguration, fClass: Class[F], kClass: Class[K], vClass: Class[V]): RDD[(K, V)]

    Permalink

    Get an RDD for a given Hadoop file with an arbitrary new API InputFormat and extra configuration options to pass to the input format.

    Get an RDD for a given Hadoop file with an arbitrary new API InputFormat and extra configuration options to pass to the input format.

    conf

    Configuration for setting up the dataset. Note: This will be put into a Broadcast. Therefore if you plan to reuse this conf to create multiple RDDs, you need to make sure you won't modify the conf. A safe approach is always creating a new conf for a new RDD.

    fClass

    storage format of the data to be read

    kClass

    Class of the key associated with the fClass parameter

    vClass

    Class of the value associated with the fClass parameter

    Note

    Because Hadoop's RecordReader class re-uses the same Writable object for each record, directly caching the returned RDD or directly passing it to an aggregation or shuffle operation will create many references to the same object. If you plan to directly cache, sort, or aggregate Hadoop writable objects, you should first copy them using a map function.

  64. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  65. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  66. def objectFile[T](path: String, minPartitions: Int = defaultMinPartitions)(implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Load an RDD saved as a SequenceFile containing serialized objects, with NullWritable keys and BytesWritable values that contain a serialized partition.

    Load an RDD saved as a SequenceFile containing serialized objects, with NullWritable keys and BytesWritable values that contain a serialized partition. This is still an experimental storage format and may not be supported exactly as is in future Spark releases. It will also be pretty slow if you use the default serializer (Java serialization), though the nice thing about it is that there's very little effort required to save arbitrary objects.

    path

    directory to the input data files, the path can be comma separated paths as a list of inputs

    minPartitions

    suggested minimum number of partitions for the resulting RDD

    returns

    RDD representing deserialized data from the file(s)

  67. def parallelize[T](seq: ⇒ Seq[T], numSlices: ⇒ Int = defaultParallelism)(implicit arg0: ClassTag[T], trace: Trace): Task[RDD[T]]

    Permalink

    Distribute a local Scala collection to form an RDD.

    Distribute a local Scala collection to form an RDD.

    seq

    Scala collection to distribute

    numSlices

    number of partitions to divide the collection into

    returns

    RDD representing distributed collection

    Note

    avoid using parallelize(Seq()) to create an empty RDD. Consider emptyRDD for an RDD with no partitions, or parallelize(Seq[T]()) for an RDD of T with empty partitions.

    ,

    Parallelize acts lazily. If seq is a mutable collection and is altered after the call to parallelize and before the first action on the RDD, the resultant RDD will reflect the modified collection. Pass a copy of the argument to avoid this.

  68. def range(start: Long, end: Long, step: Long = 1, numSlices: Int = defaultParallelism): RDD[Long]

    Permalink

    Creates a new RDD[Long] containing elements from start to end(exclusive), increased by step every element.

    Creates a new RDD[Long] containing elements from start to end(exclusive), increased by step every element.

    start

    the start value.

    end

    the end value.

    step

    the incremental step

    numSlices

    number of partitions to divide the collection into

    returns

    RDD representing distributed range

    Note

    if we need to cache this RDD, we should make sure each partition does not exceed limit.

  69. def register(acc: ⇒ AccumulatorV2[_, _], name: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Register the given accumulator with given name.

    Register the given accumulator with given name.

    Note

    Accumulators must be registered before use, or it will throw exception.

  70. def register(acc: ⇒ AccumulatorV2[_, _])(implicit trace: Trace): Task[Unit]

    Permalink

    Register the given accumulator.

    Register the given accumulator.

    Note

    Accumulators must be registered before use, or it will throw exception.

  71. def runJob[T, U](rdd: ⇒ RDD[T], processPartition: (Iterator[T]) ⇒ U, resultHandler: (Int, U) ⇒ Unit)(implicit arg0: ClassTag[U], trace: Trace): Task[Unit]

    Permalink

    Run a job on all partitions in an RDD and pass the results to a handler function.

    Run a job on all partitions in an RDD and pass the results to a handler function.

    rdd

    target RDD to run tasks on

    processPartition

    a function to run on each partition of the RDD

    resultHandler

    callback to pass each result to

  72. def runJob[T, U](rdd: ⇒ RDD[T], processPartition: (TaskContext, Iterator[T]) ⇒ U, resultHandler: (Int, U) ⇒ Unit)(implicit arg0: ClassTag[U], trace: Trace): Task[Unit]

    Permalink

    Run a job on all partitions in an RDD and pass the results to a handler function.

    Run a job on all partitions in an RDD and pass the results to a handler function. The function that is run against each partition additionally takes TaskContext argument.

    rdd

    target RDD to run tasks on

    processPartition

    a function to run on each partition of the RDD

    resultHandler

    callback to pass each result to

  73. def runJob[T, U](rdd: ⇒ RDD[T], func: (Iterator[T]) ⇒ U)(implicit arg0: ClassTag[U], trace: Trace): Task[Seq[U]]

    Permalink

    Run a job on all partitions in an RDD and return the results in an array.

    Run a job on all partitions in an RDD and return the results in an array.

    rdd

    target RDD to run tasks on

    func

    a function to run on each partition of the RDD

    returns

    in-memory collection with a result of the job (each collection element will contain a result from one partition)

  74. def runJob[T, U](rdd: ⇒ RDD[T], func: (TaskContext, Iterator[T]) ⇒ U)(implicit arg0: ClassTag[U], trace: Trace): Task[Seq[U]]

    Permalink

    Run a job on all partitions in an RDD and return the results in an array.

    Run a job on all partitions in an RDD and return the results in an array. The function that is run against each partition additionally takes TaskContext argument.

    rdd

    target RDD to run tasks on

    func

    a function to run on each partition of the RDD

    returns

    in-memory collection with a result of the job (each collection element will contain a result from one partition)

  75. def runJob[T, U](rdd: ⇒ RDD[T], func: (Iterator[T]) ⇒ U, partitions: ⇒ Seq[Int])(implicit arg0: ClassTag[U], trace: Trace): Task[Seq[U]]

    Permalink

    Run a function on a given set of partitions in an RDD and return the results as an array.

    Run a function on a given set of partitions in an RDD and return the results as an array.

    rdd

    target RDD to run tasks on

    func

    a function to run on each partition of the RDD

    partitions

    set of partitions to run on; some jobs may not want to compute on all partitions of the target RDD, e.g. for operations like first()

    returns

    in-memory collection with a result of the job (each collection element will contain a result from one partition)

  76. def runJob[T, U](rdd: ⇒ RDD[T], func: (TaskContext, Iterator[T]) ⇒ U, partitions: ⇒ Seq[Int])(implicit arg0: ClassTag[U], trace: Trace): Task[Seq[U]]

    Permalink

    Run a function on a given set of partitions in an RDD and return the results as an array.

    Run a function on a given set of partitions in an RDD and return the results as an array. The function that is run against each partition additionally takes TaskContext argument.

    rdd

    target RDD to run tasks on

    func

    a function to run on each partition of the RDD

    partitions

    set of partitions to run on; some jobs may not want to compute on all partitions of the target RDD, e.g. for operations like first()

    returns

    in-memory collection with a result of the job (each collection element will contain a result from one partition)

  77. def runJob[T, U](rdd: ⇒ RDD[T], func: (TaskContext, Iterator[T]) ⇒ U, partitions: ⇒ Seq[Int], resultHandler: (Int, U) ⇒ Unit)(implicit arg0: ClassTag[U], trace: Trace): Task[Unit]

    Permalink

    Run a function on a given set of partitions in an RDD and pass the results to the given handler function.

    Run a function on a given set of partitions in an RDD and pass the results to the given handler function. This is the main entry point for all actions in Spark.

    rdd

    target RDD to run tasks on

    func

    a function to run on each partition of the RDD

    partitions

    set of partitions to run on; some jobs may not want to compute on all partitions of the target RDD, e.g. for operations like first()

    resultHandler

    callback to pass each result to

  78. def setCallSite(shortCallSite: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Set the thread-local property for overriding the call sites of actions and RDDs.

  79. def setCheckpointDir(directory: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Set the directory under which RDDs are going to be checkpointed.

    Set the directory under which RDDs are going to be checkpointed.

    directory

    path to the directory where checkpoint files will be stored (must be HDFS path if running in cluster)

  80. def setJobDescription(value: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Set a human readable description of the current job.

  81. def setJobGroup(groupId: ⇒ String, description: ⇒ String, interruptOnCancel: ⇒ Boolean = false)(implicit trace: Trace): Task[Unit]

    Permalink

    Assigns a group ID to all the jobs started by this thread until the group ID is set to a different value or cleared.

    Assigns a group ID to all the jobs started by this thread until the group ID is set to a different value or cleared.

    Often, a unit of execution in an application consists of multiple Spark actions or jobs. Application programmers can use this method to group all those jobs together and give a group description. Once set, the Spark web UI will associate such jobs with this group.

    The application can also use org.apache.spark.SparkContext.cancelJobGroup to cancel all running jobs in this group. For example,

    // In the main thread:
    sc.setJobGroup("some_job_to_cancel", "some job description")
    sc.parallelize(1 to 10000, 2).map { i => Thread.sleep(10); i }.count()
    
    // In a separate thread:
    sc.cancelJobGroup("some_job_to_cancel")
    interruptOnCancel

    If true, then job cancellation will result in Thread.interrupt() being called on the job's executor threads. This is useful to help ensure that the tasks are actually stopped in a timely manner, but is off by default due to HDFS-1208, where HDFS may respond to Thread.interrupt() by marking nodes as dead.

  82. def setLocalProperty(key: ⇒ String, value: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Set a local property that affects jobs submitted from this thread, such as the Spark fair scheduler pool.

    Set a local property that affects jobs submitted from this thread, such as the Spark fair scheduler pool. User-defined properties may also be set here. These properties are propagated through to worker tasks and can be accessed there via org.apache.spark.TaskContext#getLocalProperty.

    These properties are inherited by child threads spawned from this thread. This may have unexpected consequences when working with thread pools. The standard java implementation of thread pools have worker threads spawn other worker threads. As a result, local properties may propagate unpredictably.

  83. def setLogLevel(logLevel: ⇒ String)(implicit trace: Trace): Task[Unit]

    Permalink

    Control our logLevel.

    Control our logLevel. This overrides any user-defined log settings.

    logLevel

    The desired log level as a string. Valid log levels include: ALL, DEBUG, ERROR, FATAL, INFO, OFF, TRACE, WARN

  84. def statusTracker: SparkStatusTracker

    Permalink
  85. def stop(implicit trace: Trace): Task[Unit]

    Permalink

    Shut down the SparkContext.

  86. def submitJob[T, U, R](rdd: ⇒ RDD[T], processPartition: (Iterator[T]) ⇒ U, partitions: ⇒ Seq[Int], resultHandler: (Int, U) ⇒ Unit, resultFunc: ⇒ R)(implicit trace: Trace): Task[SimpleFutureAction[R]]

    Permalink

    Submit a job for execution and return a FutureJob holding the result.

    Submit a job for execution and return a FutureJob holding the result.

    rdd

    target RDD to run tasks on

    processPartition

    a function to run on each partition of the RDD

    partitions

    set of partitions to run on; some jobs may not want to compute on all partitions of the target RDD, e.g. for operations like first()

    resultHandler

    callback to pass each result to

    resultFunc

    function to be executed when the result is ready

  87. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  88. def textFile(path: ⇒ String, minPartitions: ⇒ Int = defaultMinPartitions)(implicit trace: Trace): Task[RDD[String]]

    Permalink

    Read a text file from HDFS, a local file system (available on all nodes), or any Hadoop-supported file system URI, and return it as an RDD of Strings.

    Read a text file from HDFS, a local file system (available on all nodes), or any Hadoop-supported file system URI, and return it as an RDD of Strings.

    path

    path to the text file on a supported file system

    minPartitions

    suggested minimum number of partitions for the resulting RDD

    returns

    RDD of lines of the text file

  89. def uiWebUrl: Option[String]

    Permalink
  90. val underlying: org.apache.spark.SparkContext

    Permalink
  91. def union[T](first: RDD[T], rest: RDD[T]*)(implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Build the union of a list of RDDs passed as variable-length arguments.

  92. def union[T](rdds: Seq[RDD[T]])(implicit arg0: ClassTag[T]): RDD[T]

    Permalink

    Build the union of a list of RDDs.

  93. def version: String

    Permalink

    The version of Spark on which this application is running.

  94. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  97. def wholeTextFiles(path: String, minPartitions: Int = defaultMinPartitions): RDD[(String, String)]

    Permalink

    Read a directory of text files from HDFS, a local file system (available on all nodes), or any Hadoop-supported file system URI.

    Read a directory of text files from HDFS, a local file system (available on all nodes), or any Hadoop-supported file system URI. Each file is read as a single record and returned in a key-value pair, where the key is the path of each file, the value is the content of each file.

    For example, if you have the following files:

    hdfs://a-hdfs-path/part-00000
    hdfs://a-hdfs-path/part-00001
    ...
    hdfs://a-hdfs-path/part-nnnnn

    Do val rdd = sparkContext.wholeTextFile("hdfs://a-hdfs-path"),

    then rdd contains

    (a-hdfs-path/part-00000, its content)
    (a-hdfs-path/part-00001, its content)
    ...
    (a-hdfs-path/part-nnnnn, its content)
    path

    Directory to the input data files, the path can be comma separated paths as the list of inputs.

    minPartitions

    A suggestion value of the minimal splitting number for input data.

    returns

    RDD representing tuples of file path and the corresponding file content

    Note

    Partitioning is determined by data locality. This may result in too few partitions by default.

    ,

    On some filesystems, .../path/* can be a more efficient way to read all files in a directory rather than .../path/ or .../path

    ,

    Small files are preferred, large file is also allowable, but may cause bad performance.

Deprecated Value Members

  1. def accumulable[R, T](initialValue: ⇒ R, name: ⇒ String)(implicit param: AccumulableParam[R, T], trace: Trace): Task[Accumulable[R, T]]

    Permalink

    Create an org.apache.spark.Accumulable shared variable, with a name for display in the Spark UI.

    Create an org.apache.spark.Accumulable shared variable, with a name for display in the Spark UI. Tasks can add values to the accumulable using the += operator. Only the driver can access the accumulable's value.

    R

    accumulator result type

    T

    type that can be added to the accumulator

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use AccumulatorV2

  2. def accumulable[R, T](initialValue: ⇒ R)(implicit param: AccumulableParam[R, T], trace: Trace): Task[Accumulable[R, T]]

    Permalink

    Create an org.apache.spark.Accumulable shared variable, to which tasks can add values with +=.

    Create an org.apache.spark.Accumulable shared variable, to which tasks can add values with +=. Only the driver can access the accumulable's value.

    R

    accumulator result type

    T

    type that can be added to the accumulator

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use AccumulatorV2

  3. def accumulableCollection[R, T](initialValue: ⇒ R)(implicit arg0: (R) ⇒ Growable[T] with TraversableOnce[T] with Serializable, arg1: ClassTag[R], trace: Trace): Task[Accumulable[R, T]]

    Permalink

    Create an accumulator from a "mutable collection" type.

    Create an accumulator from a "mutable collection" type.

    Growable and TraversableOnce are the standard APIs that guarantee += and ++=, implemented by standard mutable collections. So you can use this with mutable Map, Set, etc.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use AccumulatorV2

  4. def accumulator[T](initialValue: ⇒ T, name: ⇒ String)(implicit param: AccumulatorParam[T], trace: Trace): Task[Accumulator[T]]

    Permalink

    Create an org.apache.spark.Accumulator variable of a given type, with a name for display in the Spark UI.

    Create an org.apache.spark.Accumulator variable of a given type, with a name for display in the Spark UI. Tasks can "add" values to the accumulator using the += method. Only the driver can access the accumulator's value.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use AccumulatorV2

  5. def accumulator[T](initialValue: ⇒ T)(implicit param: AccumulatorParam[T], trace: Trace): Task[Accumulator[T]]

    Permalink

    Create an org.apache.spark.Accumulator variable of a given type, which tasks can "add" values to using the += method.

    Create an org.apache.spark.Accumulator variable of a given type, which tasks can "add" values to using the += method. Only the driver can access the accumulator's value.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use AccumulatorV2

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped