Class/Object

ammonite

Spark

Related Docs: object Spark | package ammonite

Permalink

class Spark extends Serializable

The spark entry point from an Ammonite session

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Spark
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Spark(ttl: Duration = Spark.defaultTtl, yarnVersion: String = "2.6.0")(implicit interpreter: Interpreter, classpath: Classpath)

    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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def cancelTtl(): Unit

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. def sc: SparkContext

    Permalink

    The SparkContext associated to this handle.

    The SparkContext associated to this handle.

    Lazily initialized on first call.

    Its config can be customized prior to its initialization through sparkConf or with the withConf method.

    Its launch triggers the launch of a web server that serves the REPL build products.

    Gets automatically stopped upon host interpreter stopping. Can also be stopped manually with the stop method.

    If stopped through the stop method, calling sc again will trigger the creation of a new SparkContext.

  17. def setConfDefaults(conf: SparkConf): Unit

    Permalink

    Called before creation of the SparkContext to setup the SparkConf.

  18. def sparkConf: SparkConf

    Permalink

    The SparkConf associated to this handle

  19. def sparkContext: SparkContext

    Permalink

    Alias for sc

  20. lazy val sqlContext: SQLContext

    Permalink

    SparkSQL context associated to this handle.

    SparkSQL context associated to this handle. Lazily initialized on first call.

  21. def start(): Unit

    Permalink

    Triggers the initialization of the SparkContext, if not already started.

  22. def stop(): Unit

    Permalink

    Stops the SparkContext associated to this handle.

    Stops the SparkContext associated to this handle. The context previously returned should not be considered valid after that. The web server launched along with the context will be stopped too.

    Calling sc again will trigger the creation of a new SparkContext

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

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    Spark → AnyRef → Any
  25. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def withConf(f: (SparkConf) ⇒ SparkConf): Unit

    Permalink

    Helper function to add custom settings to the SparkConf associated to this handle

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped