Package

org.apache.spark

executor

Permalink

package executor

Executor components used with various cluster managers. See org.apache.spark.executor.Executor.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. executor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class InputMetrics extends Serializable

    Permalink

    :: DeveloperApi :: A collection of accumulators that represents metrics about reading data from external systems.

    :: DeveloperApi :: A collection of accumulators that represents metrics about reading data from external systems.

    Annotations
    @DeveloperApi()
  2. class OutputMetrics extends Serializable

    Permalink

    :: DeveloperApi :: A collection of accumulators that represents metrics about writing data to external systems.

    :: DeveloperApi :: A collection of accumulators that represents metrics about writing data to external systems.

    Annotations
    @DeveloperApi()
  3. class ShuffleReadMetrics extends Serializable

    Permalink

    :: DeveloperApi :: A collection of accumulators that represent metrics about reading shuffle data.

    :: DeveloperApi :: A collection of accumulators that represent metrics about reading shuffle data. Operations are not thread-safe.

    Annotations
    @DeveloperApi()
  4. class ShuffleWriteMetrics extends Serializable

    Permalink

    :: DeveloperApi :: A collection of accumulators that represent metrics about writing shuffle data.

    :: DeveloperApi :: A collection of accumulators that represent metrics about writing shuffle data. Operations are not thread-safe.

    Annotations
    @DeveloperApi()
  5. class TaskMetrics extends Serializable

    Permalink

    :: DeveloperApi :: Metrics tracked during the execution of a task.

    :: DeveloperApi :: Metrics tracked during the execution of a task.

    This class is wrapper around a collection of internal accumulators that represent metrics associated with a task. The local values of these accumulators are sent from the executor to the driver when the task completes. These values are then merged into the corresponding accumulator previously registered on the driver.

    The accumulator updates are also sent to the driver periodically (on executor heartbeat) and when the task failed with an exception. The TaskMetrics object itself should never be sent to the driver.

    Annotations
    @DeveloperApi()

Value Members

  1. object DataReadMethod extends Enumeration with Serializable

    Permalink

    :: DeveloperApi :: Method by which input data was read.

    :: DeveloperApi :: Method by which input data was read. Network means that the data was read over the network from a remote block manager (which may have stored the data on-disk or in-memory). Operations are not thread-safe.

    Annotations
    @DeveloperApi()
  2. object DataWriteMethod extends Enumeration with Serializable

    Permalink

    :: DeveloperApi :: Method by which output data was written.

    :: DeveloperApi :: Method by which output data was written. Operations are not thread-safe.

    Annotations
    @DeveloperApi()

Inherited from AnyRef

Inherited from Any

Ungrouped