Packages

t

org.apache.spark.shuffle.api

ShuffleDriverComponents

trait ShuffleDriverComponents extends AnyRef

:: Private :: An interface for building shuffle support modules for the Driver.

Annotations
@Private()
Source
ShuffleDriverComponents.java
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShuffleDriverComponents
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def cleanupApplication(): Unit

    Called once at the end of the Spark application to clean up any existing shuffle state.

  2. abstract def initializeApplication(): Map[String, String]

    Called once in the driver to bootstrap this module that is specific to this application.

    Called once in the driver to bootstrap this module that is specific to this application. This method is called before submitting executor requests to the cluster manager.

    This method should prepare the module with its shuffle components i.e. registering against an external file servers or shuffle services, or creating tables in a shuffle storage data database.

    returns

    additional SparkConf settings necessary for initializing the executor components. This would include configurations that cannot be statically set on the application, like the host:port of external services for shuffle storage.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. def registerShuffle(shuffleId: Int): Unit

    Called once per shuffle id when the shuffle id is first generated for a shuffle stage.

    Called once per shuffle id when the shuffle id is first generated for a shuffle stage.

    shuffleId

    The unique identifier for the shuffle stage.

  15. def removeShuffle(shuffleId: Int, blocking: Boolean): Unit

    Removes shuffle data associated with the given shuffle.

    Removes shuffle data associated with the given shuffle.

    shuffleId

    The unique identifier for the shuffle stage.

    blocking

    Whether this call should block on the deletion of the data.

  16. def supportsReliableStorage(): Boolean

    Does this shuffle component support reliable storage - external to the lifecycle of the executor host ? For example, writing shuffle data to a distributed filesystem or persisting it in a remote shuffle service.

  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped